test-commons.inc 197 B

1234567891011
  1. fail() {
  2. # The AST ends up at stderr, and CI checks for 'fail' (uppercase)
  3. # Trick it into not failing the test.
  4. echo "FA""IL:" $*
  5. exit 1
  6. }
  7. pass() {
  8. echo "PA""SS"
  9. exit 0
  10. }