Skip to content

Commit

Permalink
BP2 from 1308.1333 is expected to fail due to tree-level hh tachyon
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt committed Jan 14, 2015
1 parent 2bb5223 commit 9910320
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion test/test_NUTNMSSM.sh
Expand Up @@ -18,16 +18,30 @@ do
--slha-input-file=${input_file} \
--slha-output-file=${output_file}

if test "x$?" = "x0"; then
error="$?"

expected=0
# BP2 should fail due to tree-level hh tachyon
if test "$point" = "BP2"; then
expected=1
fi

if test "x$error" = "x$expected"; then
echo "=========="
echo "${point}: OK"
echo "exit code = $error"
echo "expected = $expected"
echo "=========="
grep Problems ${output_file}
grep hh ${output_file}
else
echo "=========="
echo "${point}: FAIL"
echo "exit code = $error"
echo "expected = $expected"
echo "=========="
grep Problems ${output_file}
grep hh ${output_file}
exit_code=1
fi

Expand Down

0 comments on commit 9910320

Please sign in to comment.