diff: turn off tracing tests in jump and fast
Tyson Dowd
trd at cs.mu.OZ.AU
Sun Feb 8 18:52:54 AEDT 1998
Hi,
Code that uses stack_layouts won't work in `fast' and `jump' until
their use of static code addresses is fixed. This isn't much of a
priority at the moment, so this change just turns off the tests
in these grades.
===================================================================
Estimated hours taken: 0.5
tests/misc_tests/Mmakefile:
Turn off tracing tests in `fast' and `jump' grades. The
stack_layouts they rely on don't yet work in these grades.
Index: tests/misc_tests/Mmakefile
===================================================================
RCS file: /home/staff/zs/imp/tests/misc_tests/Mmakefile,v
retrieving revision 1.4
diff -u -r1.4 Mmakefile
--- 1.4 1998/02/04 03:55:48
+++ Mmakefile 1998/02/08 05:47:07
@@ -19,11 +19,26 @@
#-----------------------------------------------------------------------------#
-PROGS= debugger_regs \
+STACK_LAYOUT_PROGS= \
+ debugger_regs \
debugger_test
+OTHER_PROGS=
+
MCFLAGS-debugger_regs = --generate-trace
MCFLAGS-debugger_test = --generate-trace
+
+# Not all grades can be used with stack layouts
+#
+ifeq ($(GRADE),jump)
+ PROGS=$(OTHER_PROGS)
+else
+ ifeq ($(GRADE),fast)
+ PROGS=$(OTHER_PROGS)
+ else
+ PROGS=$(STACK_LAYOUT_PROGS) $(OTHER_PROGS)
+ endif
+endif
#-----------------------------------------------------------------------------#
--
Tyson Dowd # There isn't any reason why Linux can't be
# implemented as an enterprise computing solution.
trd at cs.mu.oz.au # Find out what you've been missing while you've
http://www.cs.mu.oz.au/~trd # been rebooting Windows NT. -- InfoWorld, 1998.
More information about the developers
mailing list