blob: 7ff89669043f1b2a700ea31304538973c527651d [file] [log] [blame]
njndbebecc2009-07-14 01:39:54 +00001include $(top_srcdir)/Makefile.tool-tests.am
2
3dist_noinst_SCRIPTS = filter_stderr
4
5check_PROGRAMS = \
florian4e94bda2014-10-29 13:57:49 +00006 million rep_prefix fldcw_check complex_rep clone_test
njndbebecc2009-07-14 01:39:54 +00007
8EXTRA_DIST = \
9 clone_test.stderr.exp \
10 clone_test.post.exp \
11 clone_test.vgtest \
12 complex_rep.stderr.exp \
13 complex_rep.vgtest \
14 fldcw_check.stderr.exp \
15 fldcw_check.vgtest \
16 ll.stderr.exp \
17 ll.stdout.exp \
18 ll.post.exp \
19 ll.vgtest \
20 million.stderr.exp \
21 million.post.exp \
22 million.vgtest \
23 rep_prefix.stderr.exp \
24 rep_prefix.vgtest
25
florian6c32a3a2014-12-16 08:12:02 +000026AM_CCASFLAGS += -ffreestanding
njndbebecc2009-07-14 01:39:54 +000027
Elliott Hughesa0664b92017-04-18 17:46:52 -070028AM_LDFLAGS = -nostartfiles -nodefaultlibs
njndbebecc2009-07-14 01:39:54 +000029
njna72bc352009-07-30 04:07:10 +000030clone_test_SOURCES = clone_test.S
njndbebecc2009-07-14 01:39:54 +000031complex_rep_SOURCES = complex_rep.S
32fldcw_check_SOURCES = fldcw_check.S
njndbebecc2009-07-14 01:39:54 +000033million_SOURCES = million.S
34rep_prefix_SOURCES = rep_prefix.S
35
florian4e94bda2014-10-29 13:57:49 +000036# To compile the ll testcase, the compiler needs to support -Xassembler
37# ICC does not do that
38if !COMPILER_IS_ICC
39AM_CCASFLAGS += -Xassembler -I$(top_srcdir)/exp-bbv/tests
40check_PROGRAMS += ll
41ll_SOURCES = ll.S
42endif