Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 26, 2025
1 parent 5b01cf4 commit 80190b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ jobs:
rebench -d -v ../rebench.conf e:TestRunner2
REBENCH_EXIT=$?
if [ $REBENCH_EXIT -ne 1 ]; then
echo "rebench exit code: $REBENCH_EXIT"
if [ "$REBENCH_EXIT" -ne "1" ]; then
echo "rebench failed unexpectedly"
exit $REBENCH_EXIT
fi
Expand All @@ -166,7 +168,7 @@ jobs:
echo "test.data not found"
exit 1
fi
if [ $(wc -l < test.data) -ne 19 ]; then
if [ "$(wc -l < test.data)" -ne "19" ]; then
echo "test.data has wrong number of lines"
exit 1
fi

0 comments on commit 80190b0

Please sign in to comment.