trivial diff: fix bug in tests/debugger/Mmakefile

Fergus Henderson fjh at cs.mu.OZ.AU
Wed Jan 6 04:09:08 AEDT 1999


Estimated hours taken: 0.1

tests/debugger/Mmakefile:
	Fix a bug: one of the "1>&2" redirections was in the wrong place.

Index: tests/debugger/Mmakefile
===================================================================
RCS file: /home/mercury1/repository/tests/debugger/Mmakefile,v
retrieving revision 1.15
diff -u -r1.15 Mmakefile
--- Mmakefile	1998/12/17 13:37:11	1.15
+++ Mmakefile	1999/01/05 17:07:14
@@ -75,9 +75,9 @@
 # We ignore the result of this action because
 # the exit status of grep is not useful in this case
 mdb_command_test.out: queens mdb_command_test.inp
-	-$(MDB) ./queens < mdb_command_test.inp \
+	-$(MDB) ./queens < mdb_command_test.inp 2>&1 \
 		| egrep "internal error in the trace help system" \
-		> mdb_command_test.out 2>&1
+		> mdb_command_test.out
 
 #-----------------------------------------------------------------------------#
 

-- 
Fergus Henderson <fjh at cs.mu.oz.au>  |  "Binaries may die
WWW: <http://www.cs.mu.oz.au/~fjh>  |   but source code lives forever"
PGP: finger fjh at 128.250.37.3        |     -- leaked Microsoft memo.



More information about the developers mailing list