diff options
author | Xavier Clerc <xavier.clerc@inria.fr> | 2012-11-05 11:56:08 +0000 |
---|---|---|
committer | Xavier Clerc <xavier.clerc@inria.fr> | 2012-11-05 11:56:08 +0000 |
commit | a3c231e1c1b98dabfd140cf359c95fd8152f929b (patch) | |
tree | 7fc8f8e811ae624be1800fea8946896973ccbab2 | |
parent | fe894aec5f8766b557e0acb1b20841d4e7629cd0 (diff) |
PR#5806: ensure that backtrace tests are always run (testsuite)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13062 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | testsuite/tests/backtrace/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -52,6 +52,7 @@ Bug fixes: - PR#5772: problem with marshaling of mutually-recursive functions - PR#5775: several bug fixes for tools/pprintast.ml - PR#5785: misbehaviour with abstracted structural type used as GADT index +- PR#5806: ensure that backtrace tests are always run (testsuite) OCaml 4.00.1: diff --git a/testsuite/tests/backtrace/Makefile b/testsuite/tests/backtrace/Makefile index 7ab708f88..960ce2f0f 100644 --- a/testsuite/tests/backtrace/Makefile +++ b/testsuite/tests/backtrace/Makefile @@ -18,7 +18,7 @@ run-all: $(OCAMLC) -g -o $(EXECNAME) $$file; \ for arg in a b c d ''; do \ printf " ... testing '$$file' (with argument '$$arg'):"; \ - OCAMLRUNPARAM=b=1 $(EXECNAME) $$arg > `basename $$file ml`$$arg.result 2>&1; \ + (OCAMLRUNPARAM=b=1 $(EXECNAME) $$arg || true) > `basename $$file ml`$$arg.result 2>&1; \ $(DIFF) `basename $$file ml`$$arg.reference `basename $$file ml`$$arg.result > /dev/null && echo " => passed" || (echo " => failed" && exit 1); \ done; \ done |