Skip to content

Commit 665d82b

Browse files
committed
Fix more seashell-cli issues
1 parent f6c3c06 commit 665d82b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ ELSE()
6161
SET(GIT_DIRTY True)
6262
ENDIF()
6363

64-
set(SEASHELL_VERSION "2.5.8.1")
64+
set(SEASHELL_VERSION "2.5.8.2")
6565
if(GIT_DIRTY)
6666
set(GIT_COMMIT_HASH "${GIT_COMMIT_HASH}-dirty")
6767
endif()

src/collects/seashell-cli.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181
(define stdout (program-stdout pid))
8282
(define run-result (sync/timeout 0 (wrap-evt stdout (compose deserialize read))))
8383
(match run-result
84-
[(and result (list pid _ (and test-res (or "timeout" "killed" "passed")) stdout stderr asan))
84+
[(and result (list pid _ (and test-res (or "timeout" "killed" "passed")) stdout stderr))
8585
(eprintf "Program passed the test.\n")
86-
(write-outputs stdout stderr asan)
86+
(write-outputs stdout stderr #f)
8787
(exit 40)]
8888
[(list pid _ "error" exit-code stderr asan)
8989
(if (= exit-code 134)

0 commit comments

Comments
 (0)