Fix comment.
[oota-llvm.git] / test / Makefile
1 #===- test/Makefile ----------------------------------------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
9
10 LEVEL = ..
11 DIRS  =
12
13 all:: check-local
14
15 # 'lit' is the default test runner.
16 check-local:: check-local-lit
17
18 # Include other test rules
19 include Makefile.tests
20
21 #===------------------------------------------------------------------------===#
22 # DejaGNU testing support
23 #===------------------------------------------------------------------------===#
24
25 ifneq ($(GREP_OPTIONS),)
26 $(warning GREP_OPTIONS environment variable may interfere with test results)
27 endif
28
29 ifdef VERBOSE
30 RUNTESTFLAGS := $(VERBOSE)
31 LIT_ARGS := -v
32 else
33 LIT_ARGS := -s -v
34 endif
35
36 ifdef TESTSUITE
37 LIT_TESTSUITE := $(TESTSUITE)
38 CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
39 CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
40 RUNTESTFLAGS += --tool $(CLEANED_TESTSUITE)
41 else
42 LIT_TESTSUITE := .
43 endif
44
45 ifdef VG
46 VALGRIND := valgrind --tool=memcheck --quiet --trace-children=yes --error-exitcode=3 --leak-check=full $(VALGRIND_EXTRA_ARGS)
47 endif
48
49 # Check what to run for -all.
50 LIT_ALL_TESTSUITES := $(LIT_TESTSUITE)
51
52 extra-lit-site-cfgs::
53 .PHONY: extra-lit-site-cfgs
54
55 ifneq ($(strip $(filter check-local-all,$(MAKECMDGOALS))),)
56 ifndef TESTSUITE
57 ifeq ($(shell test -d $(PROJ_SRC_DIR)/../tools/clang && echo OK), OK)
58 LIT_ALL_TESTSUITES += $(PROJ_OBJ_DIR)/../tools/clang/test
59
60 # Force creation of Clang's lit.site.cfg.
61 clang-lit-site-cfg: FORCE
62         $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg
63 extra-lit-site-cfgs:: clang-lit-site-cfg
64 endif
65 endif
66 endif
67
68 IGNORE_TESTS :=
69
70 ifndef RUNLLVM2CPP
71 IGNORE_TESTS += llvm2cpp.exp
72 endif
73
74 ifdef IGNORE_TESTS
75 RUNTESTFLAGS += --ignore "$(strip $(IGNORE_TESTS))"
76 endif
77
78 # ulimits like these are redundantly enforced by the buildbots, so
79 # just removing them here won't work.
80 # Both AuroraUX & Solaris do not have the -m flag for ulimit
81 ifeq ($(HOST_OS),SunOS)
82 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
83 else # !SunOS
84 ifeq ($(HOST_OS),AuroraUX)
85 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
86 else # !AuroraUX
87 # Fedora 13 x86-64 python fails with -v 51200
88 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 768000 ;
89 endif # AuroraUX
90 endif # SunOS
91
92 ifneq ($(RUNTEST),)
93 check-local-dg:: site.exp
94         ( $(ULIMIT) \
95           PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(LLVMGCCDIR)/bin:$(PATH)" \
96           $(RUNTEST) $(RUNTESTFLAGS) )
97 else
98 check-local-dg:: site.exp
99         @echo "*** dejagnu not found.  Make sure 'runtest' is in your PATH, then reconfigure LLVM."
100 endif
101
102 check-local-lit:: lit.site.cfg Unit/lit.site.cfg
103         ( $(ULIMIT) \
104           $(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_TESTSUITE) )
105
106 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
107         ( $(ULIMIT) \
108           $(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_ALL_TESTSUITES) )
109
110 clean::
111         $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
112
113 # dsymutil is used on the Darwin to manipulate DWARF debugging information.
114 ifeq ($(TARGET_OS),Darwin)
115 DSYMUTIL=dsymutil
116 else
117 DSYMUTIL=true
118 endif
119 ifdef TargetCommonOpts
120 BUGPOINT_TOPTS="-gcc-tool-args $(TargetCommonOpts)"
121 else
122 BUGPOINT_TOPTS=""
123 endif
124
125 ifneq ($(OCAMLOPT),)
126 CC_FOR_OCAMLOPT := $(shell $(OCAMLOPT) -config | grep native_c_compiler | sed -e 's/native_c_compiler: //')
127 CXX_FOR_OCAMLOPT := $(subst gcc,g++,$(CC_FOR_OCAMLOPT))
128 endif
129
130 FORCE:
131
132 site.exp: FORCE
133         @echo 'Making a new site.exp file...'
134         @echo '## Autogenerated by LLVM configuration.' > site.tmp
135         @echo '# Do not edit!' >> site.tmp
136         @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp
137         @echo 'set TARGETS_TO_BUILD "$(TARGETS_TO_BUILD)"' >> site.tmp
138         @echo 'set llvmgcc_langs "$(LLVMGCC_LANGS)"' >> site.tmp
139         @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp
140         @echo 'set llvmlibsdir "$(LibDir)"' >>site.tmp
141         @echo 'set llvm_bindings "$(BINDINGS_TO_BUILD)"' >> site.tmp
142         @echo 'set srcroot "$(LLVM_SRC_ROOT)"' >>site.tmp
143         @echo 'set objroot "$(LLVM_OBJ_ROOT)"' >>site.tmp
144         @echo 'set srcdir "$(LLVM_SRC_ROOT)/test"' >>site.tmp
145         @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp
146         @echo 'set gccpath "$(CC)"' >>site.tmp
147         @echo 'set gxxpath "$(CXX)"' >>site.tmp
148         @echo 'set compile_c "' $(CC) $(CPP.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >>site.tmp
149         @echo 'set compile_cxx "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >> site.tmp
150         @echo 'set link "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) '"' >>site.tmp
151         @echo 'set llvmgcc "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
152         @echo 'set llvmgxx "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
153         @echo 'set bugpoint_topts $(BUGPOINT_TOPTS)' >> site.tmp
154         @echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp
155         @echo 'set ocamlopt "$(OCAMLOPT) -cc \"$(CXX_FOR_OCAMLOPT)\" -I $(LibDir)/ocaml"' >> site.tmp
156         @echo 'set valgrind "$(VALGRIND)"' >> site.tmp
157         @echo 'set grep "$(GREP)"' >>site.tmp
158         @echo 'set gas "$(GAS)"' >>site.tmp
159         @echo 'set llvmdsymutil "$(DSYMUTIL)"' >>site.tmp
160         @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp
161         @test ! -f site.exp || \
162         sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
163         @-rm -f site.bak
164         @test ! -f site.exp || mv site.exp site.bak
165         @mv site.tmp site.exp
166
167 lit.site.cfg: site.exp
168         @echo "Making LLVM 'lit.site.cfg' file..."
169         @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
170              -e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
171              -e "s#@LLVM_TOOLS_DIR@#$(ToolDir)#g" \
172              -e "s#@LLVMGCCDIR@#$(LLVMGCCDIR)#g" \
173              $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
174
175 Unit/lit.site.cfg: $(PROJ_OBJ_DIR)/Unit/.dir FORCE
176         @echo "Making LLVM unittest 'lit.site.cfg' file..."
177         @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
178              -e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
179              -e "s#@LLVM_TOOLS_DIR@#$(ToolDir)#g" \
180              -e "s#@LLVMGCCDIR@#$(LLVMGCCDIR)#g" \
181              -e "s#@LLVM_BUILD_MODE@#$(BuildMode)#g" \
182              -e "s#@ENABLE_SHARED@#$(ENABLE_SHARED)#g" \
183              -e "s#@SHLIBPATH_VAR@#$(SHLIBPATH_VAR)#g" \
184              $(PROJ_SRC_DIR)/Unit/lit.site.cfg.in > $@
185