mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-18 15:26:31 +00:00
Estimated hours taken: 0 Branches: main test/trailing/Mmakefile: Fix a cut-and-paste error. Only run these tests in trailing grades, not the other way around.
27 lines
609 B
Plaintext
27 lines
609 B
Plaintext
#-----------------------------------------------------------------------------#
|
|
|
|
THIS_DIR = trailing
|
|
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
ifeq "$(findstring tr,$(GRADE))" ""
|
|
TRAIL_PROGS =
|
|
else
|
|
TRAIL_PROGS = \
|
|
func_trail_test \
|
|
func_trail_test_2
|
|
endif
|
|
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
TESTS = $(TRAIL_PROGS)
|
|
SUBDIRS =
|
|
TESTS_DIR=..
|
|
include $(TESTS_DIR)/Mmake.common
|
|
|
|
# Module-specific options should go in Mercury.options so they
|
|
# can be found by `mmc --make'.
|
|
include Mercury.options
|
|
|
|
%.runtest: %.res ;
|