From 9206a7d3543f5ff4a2d7ee1c18792823f2dcf2c7 Mon Sep 17 00:00:00 2001 From: Josh Kunz Date: Sun, 5 Apr 2015 14:08:20 -0600 Subject: [PATCH] Updates timeout for argparse case --- proj3/test-cases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proj3/test-cases b/proj3/test-cases index 169ca85..590dedd 100755 --- a/proj3/test-cases +++ b/proj3/test-cases @@ -170,7 +170,7 @@ py-orig py-after))))))) -(define (bin-proc-for-input pylex pyparse bin in [timeout 15]) +(define (bin-proc-for-input pylex pyparse bin in [timeout 30]) (begin/timeout timeout (let ([lex-proc (run pylex #:input in)]) (if (not (= (hash-ref lex-proc 'status) 0)) @@ -302,7 +302,7 @@ [exn:fail:timeout? (thunk* (error-msg "pydesugar1, pyparse, or pylex didn't exit after " - "15 seconds. This is likely because of an infinite " + "30 seconds. This is likely because of an infinite " "loop bug in pydesugar1.") (exit 1))]) (run-test-case diff? python3 pylex pyparse sxpy bin case)))