about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-10 12:48:11 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-10 12:48:11 -0700
commitff6bdcf72c94b4424b7ebf41b8c8bc5c7f81cdcc (patch)
tree05fd3f1ddc0552f9df64baecc39a6f499228dc77
parente81ba32115b9ba276ebf3c747f88a3c5f0bf4037 (diff)
downloadrainbows-ff6bdcf72c94b4424b7ebf41b8c8bc5c7f81cdcc.tar.gz
tests: TEST_OPTS => SH_TEST_OPTS
These variables are only for shells in tests
-rw-r--r--t/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/GNUmakefile b/t/GNUmakefile
index 8613baa..9c1094b 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -23,7 +23,7 @@ all:: $(T)
 # can't rely on "set -o pipefail" since we don't require bash or ksh93 :<
 t_code = trash/$@-$(RUBY_VERSION).code
 t_log = trash/$@-$(RUBY_VERSION).log
-t_run = $(TRACER) $(SHELL) $(TEST_OPTS) $@
+t_run = $(TRACER) $(SHELL) $(SH_TEST_OPTS) $@
 
 # prefix stdout messages with ':', and stderr messages with '!'
 t_wrap = ( ( ( $(RM) $(t_code); \
@@ -38,7 +38,7 @@ ifndef V
   pfx =
 else
   ifeq ($(V),2)
-    TEST_OPTS += -x
+    SH_TEST_OPTS += -x
   endif
   quiet_pre = @echo '* $@';
   quiet_post = 2>&1 | tee $(t_log); exit $$(cat $(t_code))