Set VERBOSE to empty string by default, which prevents an environment
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 11 Jan 2007 08:02:13 +0000 (08:02 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 11 Jan 2007 08:02:13 +0000 (08:02 +0000)
variable named VERBOSE from causing trouble but still allows it to be
overridden by the user on the command line.  (Some of the Stanford
machines set VERBOSE=yes in the environment by default on log-in.)

src/tests/Make.tests

index 94367f69ed790b6415af002b4ca9048c84828efe..76d63f676cd838f76ffc20a75508ad377428ddca 100644 (file)
@@ -48,6 +48,9 @@ $(foreach prog,$(PROGS),$(eval $(prog).output: $(prog)))
 $(foreach test,$(TESTS),$(eval $(test).output: $($(test)_PUTFILES)))
 $(foreach test,$(TESTS),$(eval $(test).output: TEST = $(test)))
 
+# Prevent an environment variable VERBOSE from surprising us.
+VERBOSE =
+
 TESTCMD = pintos -v -k -T $(TIMEOUT)
 TESTCMD += $(SIMULATOR)
 TESTCMD += $(PINTOSOPTS)