Add a gxxcmd variable for the g++ command line used to build llvm.
[oota-llvm.git] / test / Makefile
1 #===- test/Makefile ----------------------------------------*- Makefile -*--===#
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source 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 ifdef TESTSUITE
26 CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
27 CLEANED_TESTSUITE := $(patsubst test/%,%,$(CLEANED_TESTSUITE))
28 RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
29 endif
30
31 ifndef RUNLLVM2CPP
32 RUNTESTFLAGS += --ignore llvm2cpp.exp
33 endif
34
35 ifneq ($(RUNTEST),)
36 check-local:: site.exp
37         PATH="$(LLVMToolDir):$(LLVMExmplDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
38         $(RUNTEST) $(RUNTESTFLAGS)
39 else
40 check-local:: site.exp
41         @echo "*** dejagnu not found.  Make sure runtest is in your PATH, then reconfigure llvm."
42 endif
43
44 clean::
45         $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
46
47 site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
48         @echo 'Making a new site.exp file...'
49         @echo '## these variables are automatically generated by make ##' >site.tmp
50         @echo '# Do not edit here.  If you wish to override these values' >>site.tmp
51         @echo '# edit the last section' >>site.tmp
52         @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp
53         @echo 'set llvmgcc_version "$(LLVMGCC_VERSION)"' >> site.tmp
54         @echo 'set prcontext "$(TCLSH) $(LLVM_SRC_ROOT)/test/Scripts/prcontext.tcl"' >> site.tmp
55         @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp
56         @echo 'set llvmlibsdir "$(LibDir)"' >>site.tmp
57         @echo 'set srcroot "$(LLVM_SRC_ROOT)"' >>site.tmp
58         @echo 'set objroot "$(LLVM_OBJ_ROOT)"' >>site.tmp
59         @echo 'set srcdir "$(LLVM_SRC_ROOT)/test"' >>site.tmp
60         @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp
61         @echo 'set llvmgcc "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
62         @echo 'set llvmgxx "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
63         @echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp
64         @echo 'set gxxcmd "$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts)"' >> site.tmp
65         @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp
66         @test ! -f site.exp || \
67         sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
68         @-rm -f site.bak
69         @test ! -f site.exp || mv site.exp site.bak
70         @mv site.tmp site.exp