about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-04-01 01:12:12 -0700
committerEric Wong <normalperson@yhbt.net>2009-04-01 01:12:12 -0700
commitad6a90ea1e0c1bd3959944f46672d754546dfb33 (patch)
treeb20f005dceef3b3d9911913c5205488761489d80 /GNUmakefile
parent3814e43aa2352d1b0d99470a9d52c68496819d69 (diff)
downloadunicorn-ad6a90ea1e0c1bd3959944f46672d754546dfb33.tar.gz
Otherwise it's hard to tell which version of Rails
test failed when we ran tests in parallel.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 73e1a0c..c5d7f02 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -68,7 +68,7 @@ $(slow_tests):
 TEST_OPTS = -v
 run_test = @echo '*** $(arg)$(extra) ***'; \
   setsid $(ruby) $(arg) $(TEST_OPTS) >$(t) 2>&1 || \
-  (cat >&2 < $(t); exit 1)
+  (sed "s,^,$(extra): ," >&2 < $(t); exit 1)
 
 %.n: arg = $(subst .n,,$(subst --, -n ,$@))
 %.n: t = $(subst .n,$(log_suffix),$@)