new testcase
[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 RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE)
28 endif
29
30 check-local:: site.exp
31         PATH="$(LLVMToolDir):$(LLVMExmplDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
32         $(RUNTEST) $(RUNTESTFLAGS)
33
34 clean::
35         $(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Regression -name Output -type d -print`
36         $(RM) -rf `find $(LLVM_OBJ_ROOT)/test/Feature -name Output -type d -print`
37
38 site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
39         @echo 'Making a new site.exp file...'
40         @echo '## these variables are automatically generated by make ##' >site.tmp
41         @echo '# Do not edit here.  If you wish to override these values' >>site.tmp
42         @echo '# edit the last section' >>site.tmp
43         @echo "set target_triplet $(TARGET_TRIPLE)" >> site.tmp
44         @echo 'set prcontext "$(TCLSH) $(LLVM_SRC_ROOT)/test/Scripts/prcontext.tcl"' >> site.tmp
45         @echo 'set srcdir $(LLVM_SRC_ROOT)/test' >>site.tmp
46         @echo "set objdir $(LLVM_OBJ_ROOT)/test" >>site.tmp
47         @echo 'set llvmgcc "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
48         @echo 'set llvmgxx "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
49         @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp
50         @test ! -f site.exp || \
51         sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
52         @-rm -f site.bak
53         @test ! -f site.exp || mv site.exp site.bak
54         @mv site.tmp site.exp