diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index b3499a3e..efaaa1b5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -184,10 +184,15 @@ stapdatadir = @datadir@/systemtap DEFPATH = "\".$(PATH_SEPARATOR)$(stapdatadir)\"" p = $(srcdir)/testsuite/parse s = $(srcdir)/testsuite/sem +t = $(srcdir)/testsuite/trans TESTS = $(wildcard $(p)ok/*.stp) $(wildcard $(p)ko/*.stp) \ - $(wildcard $(s)ok/*.stp) $(wildcard $(s)ko/*.stp) + $(wildcard $(s)ok/*.stp) $(wildcard $(s)ko/*.stp) \ + $(wildcard $(t)ok/*.stp) $(wildcard $(t)ko/*.stp) + +XFAIL_TESTS = $(wildcard $(p)ko/*.stp) \ + $(wildcard $(s)ko/*.stp) \ + $(wildcard $(t)ko/*.stp) -XFAIL_TESTS = $(wildcard $(p)ko/*.stp) $(wildcard $(s)ko/*.stp) TESTS_ENVIRONMENT = $(srcdir)/runtest.sh all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am |