summaryrefslogtreecommitdiff
path: root/regress/barrier/spec
diff options
context:
space:
mode:
Diffstat (limited to 'regress/barrier/spec')
-rw-r--r--regress/barrier/spec26
1 files changed, 26 insertions, 0 deletions
diff --git a/regress/barrier/spec b/regress/barrier/spec
new file mode 100644
index 00000000000..1cb10e75710
--- /dev/null
+++ b/regress/barrier/spec
@@ -0,0 +1,26 @@
+# $NetBSD: spec,v 1.1 2006/07/10 12:47:26 rillig Exp $
+#
+
+do_test() {
+
+ {
+
+ ${TEST_MAKE} "clean"
+
+ # Because of the missing USE_TOOLS+=perl, this test is expected
+ # to fail.
+ ${TEST_MAKE} || echo "The first call failed with exit code $?."
+
+ # Calling make(1) a second time must not change things.
+ ${TEST_MAKE} || echo "The second call failed with exit code $?."
+
+ } 1>"${TEST_OUTFILE}" 2>&1
+}
+
+check_result() {
+
+ exit_status "0"
+ output_require "USE_TOOLS\\+=perl"
+ output_require "The first call.*1\\.\$"
+ output_require "The second call.*1\\.\$"
+}