summaryrefslogtreecommitdiff
path: root/tools/regression/test/test-boost-build/ignored_rc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/test/test-boost-build/ignored_rc')
-rw-r--r--tools/regression/test/test-boost-build/ignored_rc/ignored_rc.jam11
-rw-r--r--tools/regression/test/test-boost-build/ignored_rc/recognized_rc.jam12
2 files changed, 23 insertions, 0 deletions
diff --git a/tools/regression/test/test-boost-build/ignored_rc/ignored_rc.jam b/tools/regression/test/test-boost-build/ignored_rc/ignored_rc.jam
new file mode 100644
index 0000000000..61b1459292
--- /dev/null
+++ b/tools/regression/test/test-boost-build/ignored_rc/ignored_rc.jam
@@ -0,0 +1,11 @@
+rule failure
+ {
+ }
+
+actions failure
+ {
+ dir _
+ echo a
+ }
+
+failure f ;
diff --git a/tools/regression/test/test-boost-build/ignored_rc/recognized_rc.jam b/tools/regression/test/test-boost-build/ignored_rc/recognized_rc.jam
new file mode 100644
index 0000000000..6afbc25ed4
--- /dev/null
+++ b/tools/regression/test/test-boost-build/ignored_rc/recognized_rc.jam
@@ -0,0 +1,12 @@
+rule failure
+ {
+ }
+
+actions failure
+ {
+ dir _
+ if errorlevel 1 exit %errorlevel%
+ echo a
+ }
+
+failure f ;