Skip to content
Snippets Groups Projects
Commit b0a77018 authored by Reuben Thomas's avatar Reuben Thomas
Browse files

[project @ 2000-04-25 11:30:53 by rrt]

Allow tests to be omitted (OMITTED_RUNTESTS), so that tests which are OS-
specific can be omitted on other OSs.
parent e6c29f8b
No related merge requests found
......@@ -3,7 +3,7 @@
HS_SRCS = $(wildcard *.hs)
BINS = $(patsubst %.o,%.bin,$(HS_OBJS))
RUNTESTS = $(patsubst %.bin,%.run,$(BINS))
RUNTESTS = $(filter-out $(OMITTED_RUNTESTS), $(patsubst %.bin,%.run,$(BINS)))
SRC_RUNTEST_OPTS += -o1 $*.stdout -o2 $*.stderr -x 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment