Skip to content

Commit

Permalink
debugging for stp failure
Browse files Browse the repository at this point in the history
  • Loading branch information
vcanumalla committed Dec 7, 2023
1 parent eab0001 commit 53fd00a
Showing 1 changed file with 15 additions and 14 deletions.
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)
)

0 comments on commit 53fd00a

Please sign in to comment.