From eb109015792ae20e9d3e42aa750214bf377a91b0 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 20 Oct 2014 08:24:27 -0500 Subject: [PATCH] raco test: show more of stderr on failure original commit: 66729a447363363165e9eb82e16639fcf3e04ca8 --- pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt b/pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt index 89545079ff..1c599475e1 100644 --- a/pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt +++ b/pkgs/compiler-pkgs/compiler-lib/compiler/commands/test.rkt @@ -263,7 +263,8 @@ (or (equal? #"" s) (ormap (lambda (p) (regexp-match? p s)) ignore-stderr-patterns))) - (error test-exe-name "non-empty stderr: ~e" (get-output-bytes e)))) + (parameterize ([error-print-width 16384]) + (error test-exe-name "non-empty stderr: ~e" (get-output-bytes e))))) (unless (zero? result-code) (error test-exe-name "non-zero exit: ~e" result-code)) (cond