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

Added milc_test.sh to spec PN tests.

Former-commit-id: 3f974221f7a591ec6238a17cfb3744083bf67ea0
parent 31df8118
No related branches found
No related tags found
No related merge requests found
......@@ -557,6 +557,7 @@ tests/spec/mcf_exp/mcf.out -text
tests/spec/mcf_test.sh -text
tests/spec/milc -text
tests/spec/milc_exp/milc.out -text
tests/spec/milc_test.sh -text
tests/spec/perlbench -text
tests/spec/sjeng -text
tests/spec/sjeng_exp/sjeng.out -text
......
#!/bin/sh
BENCH_FILE=$SECURITY_TRANSFORMS_HOME/tests/spec/milc_exp/milc.out
INPUT_FILE=$SPEC_HOME/benchspec/CPU2006/433.milc/data/train/input/su3imp.in
rm -f act.out act.err
echo "timeout 120 $1 $INPUT_FILE >act.out 2>act.err"
timeout 120 $1 <$INPUT_FILE >act.out 2>act.err
status=$?
if [ $status -ne 0 ];then
echo "TEST WRAPPER FAILURE: Exit Status Non-Zero: $status"
exit 1
fi
diff $BENCH_FILE act.out
if [ $? -ne 0 ];then
echo "TEST WRAPPER FAILURE: Actual Output Differs from Expected"
exit 1
fi
rm -f empty
touch empty
diff act.err empty
if [ $? -ne 0 ];then
echo "TEST WRAPPER FAILURE: Actual Error Differs from Expected"
exit 1
fi
echo "TEST WRAPPER SUCCESS"
exit 0
\ No newline at end of file
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