Skip to content

Commit

Permalink
Do not treat skips as errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
yugr committed Dec 22, 2024
1 parent 2e2f1b7 commit cd6170d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ for t in tests/*.c; do
fi
done
if test -n "$SKIP"; then
error "$t: skipped"
echo "$t: skipped"
continue
fi
fi
Expand All @@ -125,7 +125,7 @@ for t in tests/*.c; do
fi
done
if test -n "$SKIP"; then
error "$t: skipped"
echo "$t: skipped"
continue
fi
fi
Expand Down

0 comments on commit cd6170d

Please sign in to comment.