Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vcanumalla/add stp #2

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
debugging for stp failure
  • Loading branch information
vcanumalla committed Dec 7, 2023
commit 53fd00a5c5387d06052e1707406b75fcff4932be
29 changes: 15 additions & 14 deletions test/all-rosette-tests.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -77,21 +77,21 @@


(define (slow-tests)
(when (cvc4-available?)
(printf "===== Running CVC4 tests =====\n")
(run-tests-with-solver cvc4))
; (when (cvc4-available?)
; (printf "===== Running CVC4 tests =====\n")
; (run-tests-with-solver cvc4))

(when (boolector-available?)
(printf "===== Running Boolector tests =====\n")
(run-tests-with-solver boolector))
; (when (boolector-available?)
; (printf "===== Running Boolector tests =====\n")
; (run-tests-with-solver boolector))

(when (cvc5-available?)
(printf "===== Running cvc5 tests =====\n")
(run-tests-with-solver cvc5))
; (when (cvc5-available?)
; (printf "===== Running cvc5 tests =====\n")
; (run-tests-with-solver cvc5))

(when (bitwuzla-available?)
(printf "===== Running bitwuzla tests =====\n")
(run-tests-with-solver bitwuzla))
; (when (bitwuzla-available?)
; (printf "===== Running bitwuzla tests =====\n")
; (run-tests-with-solver bitwuzla))
(when (stp-available?)
(printf "===== Running stp tests =====\n")
(run-tests-with-solver stp))
Expand All @@ -101,5 +101,6 @@
)

(module+ test
(fast-tests)
(slow-tests))
; (fast-tests)
(slow-tests)
)
Loading