Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
debugging tester
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor O'Hara committed Jul 26, 2023
1 parent 3b6fbb7 commit 0db14eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gm-tester.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ while [[ $RETRY_COUNT -lt $MAX_RETRIES ]]; do
# Compare the result with the expected string or null string
if [[ "$RESULT" != "$EXPECTED_RESULT" && -n "$RESULT" ]]; then
echo "Success! The result is now different from the error"
echo "got result:"
echo $RESULT
if [ -z "$RESULT" ]; then
echo "Result is null. not good"
else
echo "result is NOT NULL"
fi
exit 0
break
fi
Expand Down

0 comments on commit 0db14eb

Please sign in to comment.