Disable agc tests in .mm grades, since minimal model tabling

Estimated hours taken: 0.25
Branches: main

tests/valid/Mmakefile:
	Disable agc tests in .mm grades, since minimal model tabling
	is currently incompatible with agc.
This commit is contained in:
Fergus Henderson
2004-02-05 11:56:45 +00:00
parent 76d839792a
commit 75f12f485a

View File

@@ -220,7 +220,9 @@ ifeq "$(findstring hl,$(GRADE))$(findstring .agc,$(GRADE))" "hl"
else
# The agc.* tests don't work in the il grades, as the CLR has
# its own builtin GC.
ifneq "$(findstring il,$(GRADE))" ""
# The agc.* tests also don't work in minimal model grades,
# because the collector doesn't scan the copied areas of the stacks.
ifneq "$(findstring il,$(GRADE))$(findstring .mm,$(GRADE))" ""
PROGS0 = $(TYPECLASS_PROGS) $(OTHER_PROGS)
else
PROGS0 = $(AGC_PROGS) $(TYPECLASS_PROGS) $(OTHER_PROGS)