summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-06-05 12:16:11 -0700
committerGitHub <noreply@github.com>2020-06-05 12:16:11 -0700
commit34ca2f205a8b1b6c514640a0cdaeec173872c8f7 (patch)
treedfb91ded34e7a48d533581e82801ce794b7c22ba
parente9c29bb348bd8fab5cedc48ab96ce2a0e6f98078 (diff)
Skip parse-error regression for comp builds (#4567)
Fixes nightlies. Competition builds do not report parsing errors like other builds. As a result, one of the regression tests that is testing for parse errors was failing for competition builds. In this particular example, we just report `unknown`. This commit marks the regression to be skipped for competition builds.
-rw-r--r--test/regress/regress0/quantifiers/issue4437-unc-quant.smt24
1 files changed, 3 insertions, 1 deletions
diff --git a/test/regress/regress0/quantifiers/issue4437-unc-quant.smt2 b/test/regress/regress0/quantifiers/issue4437-unc-quant.smt2
index 61f792999..5dd51dc0c 100644
--- a/test/regress/regress0/quantifiers/issue4437-unc-quant.smt2
+++ b/test/regress/regress0/quantifiers/issue4437-unc-quant.smt2
@@ -1,4 +1,6 @@
-; EXPECT: (error "Parse Error: issue4437-unc-quant.smt2:6.15: Quantifier used in non-quantified logic.")
+; REQUIRES: no-competition
+; EXPECT: Quantifier used in non-quantified logic
+; SCRUBBER: grep -o "Quantifier used in non-quantified logic"
; EXIT: 1
(set-logic QF_AUFBVLIA)
(declare-fun a () (_ BitVec 8))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback