Derive the right paths to use during testing instead of passing it in via make.
[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 #
14 # Make Dejagnu the default for testing
15 #
16 all:: check-local
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 # Both AuroraUX & Solaris do not have the -m flag for ulimit
79 ifeq ($(HOST_OS),SunOS)
80 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
81 else # !SunOS
82 ifeq ($(HOST_OS),AuroraUX)
83 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
84 else # !AuroraUX
85 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
86 endif # AuroraUX
87 endif # SunOS
88
89 ifneq ($(RUNTEST),)
90 check-local:: site.exp
91         ( $(ULIMIT) \
92           PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(LLVMGCCDIR)/bin:$(PATH)" \
93           $(RUNTEST) $(RUNTESTFLAGS) )
94 else
95 check-local:: site.exp
96         @echo "*** dejagnu not found.  Make sure 'runtest' is in your PATH, then reconfigure LLVM."
97 endif
98
99 check-local-lit:: lit.site.cfg Unit/lit.site.cfg
100         ( $(ULIMIT) \
101           $(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_TESTSUITE) )
102
103 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-lit-site-cfgs
104         ( $(ULIMIT) \
105           $(LLVM_SRC_ROOT)/utils/lit/lit.py $(LIT_ARGS) $(LIT_ALL_TESTSUITES) )
106
107 ifdef TESTONE
108 CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE))
109 CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
110 SUBDIR := $(shell dirname $(CLEANED_TESTONE))
111 TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE)
112 check-one: site.exp $(TCLSH)
113         $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \
114           echo "set subdir $(SUBDIR)" ; \
115           echo "proc pass  { msg } { puts \"PASS: \$$msg\" } "; \
116           echo "proc fail  { msg } { puts \"FAIL: \$$msg\" }" ; \
117           echo "proc xfail { msg } { puts \"XFAIL: \$$msg\" }" ; \
118           echo "proc xpass { msg } { puts \"XPASS: \$$msg\" }" ; \
119           echo "proc verbose args { }" ; \
120           echo "source $(LLVM_SRC_ROOT)/test/lib/llvm.exp" ; \
121           echo "RunLLVMTests $(TESTPATH)" ) | \
122         ( $(ULIMIT) \
123           PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
124           $(TCLSH) )
125 endif
126
127 clean::
128         $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
129
130 # dsymutil is used on the Darwin to manipulate DWARF debugging information.
131 ifeq ($(TARGET_OS),Darwin)
132 DSYMUTIL=dsymutil
133 else
134 DSYMUTIL=true
135 endif
136 ifdef TargetCommonOpts
137 BUGPOINT_TOPTS="-gcc-tool-args $(TargetCommonOpts)"
138 else
139 BUGPOINT_TOPTS=""
140 endif
141
142 ifneq ($(OCAMLOPT),)
143 CC_FOR_OCAMLOPT := $(shell $(OCAMLOPT) -config | grep native_c_compiler | sed -e 's/native_c_compiler: //')
144 CXX_FOR_OCAMLOPT := $(subst gcc,g++,$(CC_FOR_OCAMLOPT))
145 endif
146
147 FORCE:
148
149 site.exp: FORCE
150         @echo 'Making a new site.exp file...'
151         @echo '## these variables are automatically generated by make ##' >site.tmp
152         @echo '# Do not edit here.  If you wish to override these values' >>site.tmp
153         @echo '# edit the last section' >>site.tmp
154         @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp
155         @echo 'set TARGETS_TO_BUILD "$(TARGETS_TO_BUILD)"' >> site.tmp
156         @echo 'set llvmgcc_langs "$(LLVMGCC_LANGS)"' >> site.tmp
157         @echo 'set llvmgcc_version "$(LLVMGCC_VERSION)"' >> site.tmp
158         @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp
159         @echo 'set llvmlibsdir "$(LibDir)"' >>site.tmp
160         @echo 'set llvm_bindings "$(BINDINGS_TO_BUILD)"' >> site.tmp
161         @echo 'set srcroot "$(LLVM_SRC_ROOT)"' >>site.tmp
162         @echo 'set objroot "$(LLVM_OBJ_ROOT)"' >>site.tmp
163         @echo 'set srcdir "$(LLVM_SRC_ROOT)/test"' >>site.tmp
164         @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp
165         @echo 'set gccpath "$(CC)"' >>site.tmp
166         @echo 'set gxxpath "$(CXX)"' >>site.tmp
167         @echo 'set compile_c "' $(CC) $(CPP.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >>site.tmp
168         @echo 'set compile_cxx "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >> site.tmp
169         @echo 'set link "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) '"' >>site.tmp
170         @echo 'set llvmgcc "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
171         @echo 'set llvmgxx "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
172         @echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp
173         @echo 'set bugpoint_topts $(BUGPOINT_TOPTS)' >> site.tmp
174         @echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp
175         @echo 'set ocamlopt "$(OCAMLOPT) -cc \"$(CXX_FOR_OCAMLOPT)\" -I $(LibDir)/ocaml"' >> site.tmp
176         @echo 'set valgrind "$(VALGRIND)"' >> site.tmp
177         @echo 'set grep "$(GREP)"' >>site.tmp
178         @echo 'set gas "$(GAS)"' >>site.tmp
179         @echo 'set llvmdsymutil "$(DSYMUTIL)"' >>site.tmp
180         @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp
181         @test ! -f site.exp || \
182         sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
183         @-rm -f site.bak
184         @test ! -f site.exp || mv site.exp site.bak
185         @mv site.tmp site.exp
186
187 lit.site.cfg: site.exp
188         @echo "Making LLVM 'lit.site.cfg' file..."
189         @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
190              -e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
191              -e "s#@LLVM_TOOLS_DIR@#$(ToolDir)#g" \
192              -e "s#@LLVMGCCDIR@#$(LLVMGCCDIR)#g" \
193              $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
194
195 Unit/lit.site.cfg: $(PROJ_OBJ_DIR)/Unit/.dir FORCE
196         @echo "Making LLVM unittest 'lit.site.cfg' file..."
197         @sed -e "s#@LLVM_SOURCE_DIR@#$(LLVM_SRC_ROOT)#g" \
198              -e "s#@LLVM_BINARY_DIR@#$(LLVM_OBJ_ROOT)#g" \
199              -e "s#@LLVM_TOOLS_DIR@#$(ToolDir)#g" \
200              -e "s#@LLVMGCCDIR@#$(LLVMGCCDIR)#g" \
201              -e "s#@LLVM_BUILD_MODE@#$(BuildMode)#g" \
202              $(PROJ_SRC_DIR)/Unit/lit.site.cfg.in > $@