* Create scaffold_test.sh which holds actual tests (still calls scaffold.sh) * Move rm/unregister of foobar to setup/teardown functions * run.sh now prints deprecation warning and calls ../scripts/runtests
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat << EOF
|
|
|
|
You're using the deprecated ./test/run.sh. This file will be removed
|
|
soon in favor of ../scripts/runtests.
|
|
|
|
Running ../scripts/runtests...
|
|
|
|
EOF
|
|
|
|
../scripts/runtests "$@"
|