17 lines
222 B
Bash
Executable file
17 lines
222 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
mkdir ./testing_tmp
|
|
cd ./testing_tmp
|
|
|
|
cp $1 ./core
|
|
cp $2 ./core.ini
|
|
|
|
./core start >/dev/null 2>&1 &
|
|
core_id=$!
|
|
|
|
sleep 2;
|
|
|
|
tavern-ci --tavern-beta-new-traceback ..
|
|
kill $core_id
|
|
cd ..
|
|
rm -r ./testing_tmp
|