X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / Makefile
blob813ce57235f750cc0e2e25c09de9f623d5ae20cf
1 #===- test/Makefile ----------------------------------------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 LEVEL = ..
11 DIRS =
14 # Make Dejagnu the default for testing
16 all:: check-local
18 # Include other test rules
19 include Makefile.tests
21 #===------------------------------------------------------------------------===#
22 # DejaGNU testing support
23 #===------------------------------------------------------------------------===#
25 ifneq ($(GREP_OPTIONS),)
26 $(warning GREP_OPTIONS environment variable may interfere with test results)
27 endif
29 ifdef VERBOSE
30 RUNTESTFLAGS := $(VERBOSE)
31 LIT_ARGS := -v
32 else
33 LIT_ARGS := -s -v
34 endif
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
45 ifdef VG
46 VALGRIND := valgrind --tool=memcheck --quiet --trace-children=yes --error-exitcode=3 --leak-check=full
47 endif
49 IGNORE_TESTS :=
51 ifndef RUNLLVM2CPP
52 IGNORE_TESTS += llvm2cpp.exp
53 endif
55 IGNORE_TESTS += $(filter-out $(BINDINGS_TO_BUILD:=.exp),$(ALL_BINDINGS:=.exp))
57 ifdef IGNORE_TESTS
58 RUNTESTFLAGS += --ignore "$(strip $(IGNORE_TESTS))"
59 endif
61 # Both AuroraUX & Solaris do not have the -m flag for ulimit
62 ifeq ($(HOST_OS),SunOS)
63 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
64 else
65 ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
66 endif
68 ifneq ($(RUNTEST),)
69 check-local:: site.exp
70 ( $(ULIMIT) \
71 PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
72 $(RUNTEST) $(RUNTESTFLAGS) )
73 else
74 check-local:: site.exp
75 @echo "*** dejagnu not found. Make sure 'runtest' is in your PATH, then reconfigure LLVM."
76 endif
78 check-local-lit:: lit.site.cfg
79 ( $(ULIMIT) \
80 $(LLVM_SRC_ROOT)/utils/lit/lit.py \
81 --path "$(LLVMToolDir)" \
82 --path "$(LLVM_SRC_ROOT)/test/Scripts" \
83 $(LIT_ARGS) $(LIT_TESTSUITE) )
85 ifdef TESTONE
86 CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE))
87 CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
88 SUBDIR := $(shell dirname $(CLEANED_TESTONE))
89 TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE)
90 check-one: site.exp $(TCLSH)
91 $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \
92 echo "set subdir $(SUBDIR)" ; \
93 echo "proc pass { msg } { puts \"PASS: \$$msg\" } "; \
94 echo "proc fail { msg } { puts \"FAIL: \$$msg\" }" ; \
95 echo "proc xfail { msg } { puts \"XFAIL: \$$msg\" }" ; \
96 echo "proc xpass { msg } { puts \"XPASS: \$$msg\" }" ; \
97 echo "proc verbose args { }" ; \
98 echo "source $(LLVM_SRC_ROOT)/test/lib/llvm.exp" ; \
99 echo "RunLLVMTests $(TESTPATH)" ) | \
100 ( $(ULIMIT) \
101 PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
102 $(TCLSH) )
103 endif
105 clean::
106 $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
108 # dsymutil is used on the Darwin to manipulate DWARF debugging information.
109 ifeq ($(TARGET_OS),Darwin)
110 DSYMUTIL=dsymutil
111 else
112 DSYMUTIL=true
113 endif
114 ifdef TargetCommonOpts
115 BUGPOINT_TOPTS="-gcc-tool-args $(TargetCommonOpts)"
116 else
117 BUGPOINT_TOPTS=""
118 endif
120 ifneq ($(OCAMLOPT),)
121 CC_FOR_OCAMLOPT := $(shell $(OCAMLOPT) -config | grep native_c_compiler | sed -e 's/native_c_compiler: //')
122 CXX_FOR_OCAMLOPT := $(subst gcc,g++,$(CC_FOR_OCAMLOPT))
123 endif
125 FORCE:
127 site.exp: FORCE
128 @echo 'Making a new site.exp file...'
129 @echo '## these variables are automatically generated by make ##' >site.tmp
130 @echo '# Do not edit here. If you wish to override these values' >>site.tmp
131 @echo '# edit the last section' >>site.tmp
132 @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp
133 @echo 'set TARGETS_TO_BUILD "$(TARGETS_TO_BUILD)"' >> site.tmp
134 @echo 'set llvmgcc_langs "$(LLVMGCC_LANGS)"' >> site.tmp
135 @echo 'set llvmgcc_version "$(LLVMGCC_VERSION)"' >> site.tmp
136 @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp
137 @echo 'set llvmlibsdir "$(LibDir)"' >>site.tmp
138 @echo 'set srcroot "$(LLVM_SRC_ROOT)"' >>site.tmp
139 @echo 'set objroot "$(LLVM_OBJ_ROOT)"' >>site.tmp
140 @echo 'set srcdir "$(LLVM_SRC_ROOT)/test"' >>site.tmp
141 @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp
142 @echo 'set gccpath "$(CC)"' >>site.tmp
143 @echo 'set gxxpath "$(CXX)"' >>site.tmp
144 @echo 'set compile_c "' $(CC) $(CPP.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >>site.tmp
145 @echo 'set compile_cxx "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) -c '"' >> site.tmp
146 @echo 'set link "' $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) '"' >>site.tmp
147 @echo 'set llvmgcc "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
148 @echo 'set llvmgxx "$(LLVMGCC) $(TargetCommonOpts) $(EXTRA_OPTIONS)"' >> site.tmp
149 @echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp
150 @echo 'set bugpoint_topts $(BUGPOINT_TOPTS)' >> site.tmp
151 @echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp
152 @echo 'set ocamlopt "$(OCAMLOPT) -cc \"$(CXX_FOR_OCAMLOPT)\" -I $(LibDir)/ocaml"' >> site.tmp
153 @echo 'set valgrind "$(VALGRIND)"' >> site.tmp
154 @echo 'set grep "$(GREP)"' >>site.tmp
155 @echo 'set gas "$(GAS)"' >>site.tmp
156 @echo 'set llvmdsymutil "$(DSYMUTIL)"' >>site.tmp
157 @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp
158 @test ! -f site.exp || \
159 sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
160 @-rm -f site.bak
161 @test ! -f site.exp || mv site.exp site.bak
162 @mv site.tmp site.exp
164 lit.site.cfg: site.exp
165 @echo "Making 'lit.site.cfg' file..."
166 @echo "## Autogenerated by Makefile ##" > $@
167 @echo "# Do not edit!" >> $@
168 @echo >> $@
169 @echo "# Preserve some key paths for use by main LLVM test suite config." >> $@
170 @echo "config.llvm_obj_root = \"\"\"$(LLVM_OBJ_ROOT)\"\"\"" >> $@
171 @echo >> $@
172 @echo "# Let the main config do the real work." >> $@
173 @echo "lit.load_config(config, \"\"\"$(LLVM_SRC_ROOT)/test/lit.cfg\"\"\")" >> $@