Add explicit triples to avoid default behavior that varies by host.
[oota-llvm.git] / test / Makefile
index 001e3ac62f5bad7088f09510d5de1976662d5fb8..59cd23e03b3878048ce47106ef11436c8a05ec5b 100644 (file)
@@ -42,6 +42,25 @@ check-local:: site.exp
        @echo "*** dejagnu not found.  Make sure runtest is in your PATH, then reconfigure llvm."
 endif
 
+ifdef TESTONE
+CLEANED_TESTONE := $(patsubst %/,%,$(TESTONE))
+CLEANED_TESTONE := $(patsubst test/%,%,$(CLEANED_TESTONE))
+SUBDIR := $(shell dirname $(CLEANED_TESTONE))
+TESTPATH := $(LLVM_SRC_ROOT)/test/$(CLEANED_TESTONE)
+check-one: site.exp $(TCLSH)
+       $(Verb)( echo "source $(LLVM_OBJ_ROOT)/test/site.exp" ; \
+         echo "set subdir $(SUBDIR)" ; \
+         echo "proc pass  { msg } { puts \"PASS: \$$msg\" } "; \
+         echo "proc fail  { msg } { puts \"FAIL: \$$msg\" }" ; \
+         echo "proc xfail { msg } { puts \"XFAIL: \$$msg\" }" ; \
+         echo "proc xpass { msg } { puts \"XPASS: \$$msg\" }" ; \
+         echo "source $(LLVM_SRC_ROOT)/test/lib/llvm.exp" ; \
+         echo "RunLLVMTests $(TESTPATH)" ) | \
+       ( ulimit -t 600 ; ulimit -d 512000 ; \
+         PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
+         $(TCLSH) )
+endif
+
 clean::
        $(RM) -rf `find $(LLVM_OBJ_ROOT)/test -name Output -type d -print`
 
@@ -51,6 +70,8 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
        @echo '# Do not edit here.  If you wish to override these values' >>site.tmp
        @echo '# edit the last section' >>site.tmp
        @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp
+       @echo 'set TARGETS_TO_BUILD "$(TARGETS_TO_BUILD)"' >> site.tmp
+       @echo 'set llvmgcc_langs "$(LLVMGCC_LANGS)"' >> site.tmp
        @echo 'set llvmgcc_version "$(LLVMGCC_VERSION)"' >> site.tmp
        @echo 'set prcontext "$(TCLSH) $(LLVM_SRC_ROOT)/test/Scripts/prcontext.tcl"' >> site.tmp
        @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp
@@ -61,11 +82,11 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config
        @echo 'set objdir "$(LLVM_OBJ_ROOT)/test"' >>site.tmp
        @echo 'set gccpath "$(CC)"' >>site.tmp
        @echo 'set gxxpath "$(CXX)"' >>site.tmp
-       @echo 'set compile_c {$(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c } ' >>site.tmp
-       @echo 'set compile_cxx {$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) - c}' >> site.tmp
-       @echo 'set link {$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) $(LD.Flags)}' >>site.tmp
-       @echo 'set llvmgcc "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
-       @echo 'set llvmgxx "PATH=\"$(LLVMToolDir):$(PATH)\" \"$(LLVMGCC)\""' >> site.tmp
+       @echo 'set compile_c "$(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c "' >>site.tmp
+       @echo 'set compile_cxx "$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) - c"' >> site.tmp
+       @echo 'set link "$(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) $(LD.Flags)"' >>site.tmp
+       @echo 'set llvmgcc "$(LLVMGCC)"' >> site.tmp
+       @echo 'set llvmgxx "$(LLVMGCC)"' >> site.tmp
        @echo 'set llvmgccmajvers "$(LLVMGCC_MAJVERS)"' >> site.tmp
        @echo 'set shlibext "$(SHLIBEXT)"' >> site.tmp
        @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp