8 lines
91 B
Bash
8 lines
91 B
Bash
# common settings and functions for test scripts
|
|
|
|
fail_test()
|
|
{
|
|
echo "FAIL: $@"
|
|
exit 1
|
|
}
|