13 lines
300 B
Bash
13 lines
300 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
testdir=$(readlink -f $(dirname $0))
|
||
|
rootdir=$(readlink -f $testdir/../..)
|
||
|
source $rootdir/scripts/common.sh
|
||
|
source $rootdir/test/common/autotest_common.sh
|
||
|
|
||
|
if [ $(uname) = Linux ]; then
|
||
|
$rootdir/scripts/setup.sh
|
||
|
fi
|
||
|
|
||
|
run_test "nvme_simple_copy" $testdir/simple_copy/simple_copy
|