From 3f153b74876e0a5dce14402f98d2d348ecfacc95 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 24 Aug 2018 14:02:43 +0200 Subject: Improve execution of regression tests - Make it possible to skip tests on some platforms - Make it possible to expect a failure (typically: of the reference interpreter) - Stop on error --- test/regression/funptr2.cond | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/regression/funptr2.cond (limited to 'test/regression/funptr2.cond') diff --git a/test/regression/funptr2.cond b/test/regression/funptr2.cond new file mode 100644 index 00000000..ab460efb --- /dev/null +++ b/test/regression/funptr2.cond @@ -0,0 +1,6 @@ +#!/bin/sh + +if test -n "$INTERP" +then exit $EXPECT_FAIL +else exit $RUN +fi -- cgit