mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
3aae5ca6fd
/bin/bash is a Linuxism. Other operating systems install bash to different paths. Use /usr/bin/env in shebangs to find bash. Signed-off-by: Alan Somers <asomers@gmail.com>
21 lines
606 B
Bash
Executable File
21 lines
606 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BIN_PATH=${TESTDIR}/fsstress/ltp-full-20091231/testcases/kernel/fs/fsstress/fsstress
|
|
|
|
path=`pwd`
|
|
trap "rm -rf ${TESTDIR}/fsstress" EXIT
|
|
mkdir -p ${TESTDIR}/fsstress
|
|
cd ${TESTDIR}/fsstress
|
|
wget -q -O ${TESTDIR}/fsstress/ltp-full.tgz http://download.ceph.com/qa/ltp-full-20091231.tgz
|
|
tar xzf ${TESTDIR}/fsstress/ltp-full.tgz
|
|
rm ${TESTDIR}/fsstress/ltp-full.tgz
|
|
cd ${TESTDIR}/fsstress/ltp-full-20091231/testcases/kernel/fs/fsstress
|
|
make
|
|
cd $path
|
|
|
|
command="${BIN_PATH} -d fsstress-`hostname`$$ -l 1 -n 1000 -p 10 -v"
|
|
|
|
echo "Starting fsstress $command"
|
|
mkdir fsstress`hostname`-$$
|
|
$command
|