From 44260da512e562e3762d902a5856253a1569a576 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 8 Apr 2015 10:13:54 -0500 Subject: [PATCH] fix test case count reporting for the separate processes case --- compiler-lib/compiler/commands/test.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler-lib/compiler/commands/test.rkt b/compiler-lib/compiler/commands/test.rkt index 1c599475e1..55b2dc4f54 100644 --- a/compiler-lib/compiler/commands/test.rkt +++ b/compiler-lib/compiler/commands/test.rkt @@ -250,8 +250,8 @@ (values (proc 'exit-code) (and (pair? results) - (exact-positive-integer? (car results)) - (exact-positive-integer? (cdr results)) + (exact-nonnegative-integer? (car results)) + (exact-nonnegative-integer? (cdr results)) results))])) ;; Shut down the place/process (usually a no-op unless it timed out):