Skip to content
Snippets Groups Projects
Commit 9ea99b3a authored by bdr7fv's avatar bdr7fv
Browse files

Deleted get_manual_test_script.sh from the repo.


Former-commit-id: 81846835919a9fcff0a314c50d453741bf7e8070
parent a54155e3
No related branches found
No related tags found
No related merge requests found
......@@ -2930,7 +2930,6 @@ tools/generate_exe.sh -text
tools/generate_io_baseline.sh -text
tools/generate_relocfile.sh -text
tools/generate_string_signatures.sh -text
tools/get_manual_test_script.sh -text
tools/getlibs.sh -text
tools/getsyms.sh -text
tools/grace_utils.sh -text
......
#!/bin/bash
PROGRAM_NAME=$1
TEST_DIR=$PEASOUP_HOME/tests
found()
{
echo "found manual test script: $1"
echo "$1" >get_manual_test_script.log
exit 0
}
case "$PROGRAM_NAME" in
"bunzip2")
found $TEST_DIR/bzip/test_script.sh
;;
"touch")
found $TEST_DIR/touch/test_script.sh
;;
"grep")
found $TEST_DIR/grep/test_script.sh
;;
* )
echo "get_manual_test_script.sh: no matching test script found"
exit 1
;;
esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment