Skip to content

Commit e4aa2e5

Browse files
authored
Merge pull request #714 from cs136/master
Merge master into stable (fix failing seashell-cli test)
2 parents b2c95c7 + 0fc7324 commit e4aa2e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/collects/seashell-cli.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
(define stdout (program-stdout pid))
7676
(define run-result (sync/timeout 0 (wrap-evt stdout (compose deserialize read))))
7777
(match run-result
78-
[(and result (list pid _ (and test-res (or "timeout" "killed" "passed")) stdout stderr))
78+
[(and result (list pid _ (and test-res (or "killed" "passed")) stdout stderr))
7979
(eprintf "Program passed the test.\n")
8080
(write-outputs stdout stderr #f)
8181
(exit 40)]
@@ -93,7 +93,7 @@
9393
(eprintf "Test failed the test (but did not crash)~n")
9494
(write-outputs stdout stderr asan)
9595
(exit 30)]
96-
[(list pid _ "timeout")
96+
[(or (list pid _ "timeout") (list pid _ "timeout" _ _))
9797
(eprintf "Test timed out (but did not crash)~n")
9898
(exit 50)]
9999
[x

0 commit comments

Comments
 (0)