diff options
author | David Phillips <david@sighup.nz> | 2019-03-16 22:09:21 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-03-16 22:09:21 +1300 |
commit | 8a7469af2fc59cf33094b7f5c21f7c9396c7b7cb (patch) | |
tree | 2a2ec4d27fc859da10353acbad00cd0ea240241f /run_tests.sh | |
parent | 40ed951cb966442f975856d6c8c660b94fd57862 (diff) | |
download | sudoku-master.tar.xz |
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-x | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index a5ebb81..e185b3f 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -10,7 +10,7 @@ XFAILS="$PWD/test/xfails" test_fail() { t="$(basename $1)" reason="$2" - if grep -q "$t" "$XFAILS" ; then + if grep -q "^$t\b" "$XFAILS" ; then echo -e '[\e[34;1mXFAIL\e[0m]'" $t: $reason" ((t_xfail++)) else |