Skip to content

Commit

Permalink
fix runtest result
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Zak authored and Jonathan Zak committed Jul 22, 2024
1 parent 1678f2f commit e596adf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ do
echo "checking result...."
echo "=================================="
gmake -C $test checkresult
echo "result is $?"
if [[ "0" == "$?" ]]
result="$?"
echo "Test $test result is $result"
if [[ "0" == "$result" ]]
then
((num_pass+=1))
else
Expand Down

0 comments on commit e596adf

Please sign in to comment.