From: Andres Noetzli Date: Fri, 5 Jun 2020 19:16:11 +0000 (-0700) Subject: Skip parse-error regression for comp builds (#4567) X-Git-Tag: cvc5-1.0.0~3247 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=34ca2f205a8b1b6c514640a0cdaeec173872c8f7;p=cvc5.git 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. --- 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))