Hi Im trying to modify fio test so that I can add fio parameter rwmixread=int, but i want to pass that parameter with main test type.
I copied from pts/fio to local/fio-test - created my own local test and edited test-definition.xml
So I was wondering if I can pass multiple values from the menu like so:
...
<Menu>
<Entry>
<Name>Random Read</Name>
<Value>randread</Value>
<Value>75</Value>
<Message></Message>
</Entry>
...
But im stuck with editing install.sh
...
echo "[global]
rw=\$1
rwmixread=\$1
ioengine=\$2
iodepth=64
size=1g
...
What is the proper way to add new parameter rwmixread=\$1 or rwmixread=\$2 or is this even possible?
Thanks
I copied from pts/fio to local/fio-test - created my own local test and edited test-definition.xml
So I was wondering if I can pass multiple values from the menu like so:
...
<Menu>
<Entry>
<Name>Random Read</Name>
<Value>randread</Value>
<Value>75</Value>
<Message></Message>
</Entry>
...
But im stuck with editing install.sh
...
echo "[global]
rw=\$1
rwmixread=\$1
ioengine=\$2
iodepth=64
size=1g
...
What is the proper way to add new parameter rwmixread=\$1 or rwmixread=\$2 or is this even possible?
Thanks
Comment