Skip to content

Commit

Permalink
fixing regular expression problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Dejan Jovanovic committed May 21, 2018
1 parent 08ed824 commit c9856e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 23 deletions.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ foreach(FILE ${regressions})
# Get the gold output
file(READ "${FILE}.gold" GOLD_OUTPUT)
# Set the output
set_tests_properties(${FILE} PROPERTIES PASS_REGULAR_EXPRESSION ${GOLD_OUTPUT})
set_tests_properties(${FILE} PROPERTIES PASS_REGULAR_EXPRESSION "${GOLD_OUTPUT}")
endif()

endforeach(FILE)
Expand Down
23 changes: 1 addition & 22 deletions test/regress/bmc/nra/algebraic.mcmt.gold
Original file line number Diff line number Diff line change
@@ -1,23 +1,2 @@
invalid
(trace
(state
(P 1)
(x (/ (- 1792728671193156477399422023279) 1267650600228229401496703205376))
(n 0)
)
(input
)
(state
(P (/ (- 1792728671193156477399422023279) 1267650600228229401496703205376))
(x (/ (- 1792728671193156477399422023279) 1267650600228229401496703205376))
(n 1)
)
(input
)
(state
(P 2)
(x (/ (- 1792728671193156477399422023279) 1267650600228229401496703205376))
(n 2)
)
)
invalid.*1792728671193156477399422023279.*1267650600228229401496703205376.*

0 comments on commit c9856e7

Please sign in to comment.