20 lines
656 B
Bash
20 lines
656 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
testdir=$(readlink -f $(dirname $0))
|
||
|
rootdir=$(readlink -f $testdir/../../..)
|
||
|
|
||
|
# Bind devices to NVMe driver
|
||
|
$rootdir/scripts/setup.sh
|
||
|
|
||
|
# Run Performance Test with 1 SSD
|
||
|
python $testdir/run_fio_test.py $testdir/fio_test.conf $rootdir/examples/nvme/fio_plugin/fio_plugin 1
|
||
|
|
||
|
# 2 SSDs test run
|
||
|
python $testdir/run_fio_test.py $testdir/fio_test.conf $rootdir/examples/nvme/fio_plugin/fio_plugin 2
|
||
|
|
||
|
# 4 SSDs test run
|
||
|
python $testdir/run_fio_test.py $testdir/fio_test.conf $rootdir/examples/nvme/fio_plugin/fio_plugin 4
|
||
|
|
||
|
# 8 SSDs test run
|
||
|
python $testdir/run_fio_test.py $testdir/fio_test.conf $rootdir/examples/nvme/fio_plugin/fio_plugin 8
|