14 lines
539 B
YAML
14 lines
539 B
YAML
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-basic
|
||
|
tags:
|
||
|
- classic
|
||
|
tests:
|
||
|
- simple:
|
||
|
dir: .
|
||
|
# This is the same test run by the 'test' target in the upstream Makefile
|
||
|
run: "fio --minimal --thread --exitall_on_error --runtime=1s --name=nulltest --ioengine=null --rw=randrw --iodepth=2 --norandommap --random_generator=tausworthe64 --size=16T --name=verifyfstest --filename=fiotestfile.tmp --unlink=1 --rw=write --verify=crc32c --verify_state_save=0 --size=16K"
|
||
|
required_packages:
|
||
|
- fio
|
||
|
|