aboutsummaryrefslogtreecommitdiff
path: root/test/Makefile.tests
AgeCommit message (Collapse)Author
2013-04-12Remove obsolete object file dumpersNico Rieck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179362 91177308-0d34-0410-b5e6-96231b3b80d8
2010-02-23Switch .bc/.ll Makefile rules to use LLVM{CC,CXX} instead of LLVMG{CC,XX}Daniel Dunbar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96936 91177308-0d34-0410-b5e6-96231b3b80d8
2010-02-23Inline and eliminate LLVMG{CC,XX}WITHPATH.Daniel Dunbar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96913 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-25Remove obsolete -f flags.Dan Gohman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-21Failure.sh is dead, remove it.Reid Spencer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36316 91177308-0d34-0410-b5e6-96231b3b80d8
2005-02-18Quote the value of the PATH variable so that Cygwin and Windows can haveReid Spencer
spaces in path names and not confuse the shell. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20241 91177308-0d34-0410-b5e6-96231b3b80d8
2004-12-24Make sure LLVMGCCWITHPATH is used instead of just LLVMGCC so that theReid Spencer
CFE tools can find the correct LLVM tools to invoke. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19128 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-21Move LLVM tool definitions to Makefile.rulesBrian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15049 91177308-0d34-0410-b5e6-96231b3b80d8
2004-06-22test/Libraries have been long gone for a long time now. Since noone noticedChris Lattner
tehse were broken, just nuke them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14310 91177308-0d34-0410-b5e6-96231b3b80d8
2004-06-01Make tool names end with .exe on windows. This isn't needed to run theChris Lattner
tools, but is required for rules that depend on the executables, e.g.: a: b $(LLVMAS) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13926 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-10Right, define the LPROF variableChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11273 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-16Remove the use of LLVMGCCARCH. Instead, query the compiler for theJohn Criswell
location of libgcc.a; that will tell us the name of the directory to find the libraries that we're looking for. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10903 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-13You know you like Makefiles with fewer variables. Next up on the victim listBrian Gaeke
is TOOLS, which is how you say LLVMTOOLCURRENT in Oldspeak. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10832 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-13Get rid of dead defns of LCC, LCXX, LAS, as per FIXME.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10829 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-13Fix overzealous fixme fixingBrian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10827 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-13Remove dead definitions of NATGCC and CP, and dead .tll, .tbc rules.Brian Gaeke
Make should continue even if compilation cmds fail, for the sake of the nightly tester, so use minuses on them. Use LLVMAS, LLVMGCC, LLVMGXX instead of LAS, LCC, LCXX (as per FIXME). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10825 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-29Move rule to top-level makefileChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10255 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-16Updated the name of the linker to llvm-link.John Criswell
This should fix the MultiSource tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8569 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-11Fixed SPEC so that it would run correctly with the new autoconf-style objectJohn Criswell
directory. Cleaned up the Makefile so that it uses VPATH to find source files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8477 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-06Checkin of autoconf-style object root.John Criswell
Use QMTest for the feature and Regression tests. Continue using the Makefile system for the Programs tests. Adjusted the Makefile rules to handle building outside the source directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8381 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-29Use `llvm-dis' instead of simply `dis'.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8217 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-22Disable .d file generation for LLVM testsChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8052 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-20Point to the RIGHT GCC library directoryChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7998 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-15Some of this gets hoisted up to Makefile.commonChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7856 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-07Removed the support for pool allocation testing. This will be in a separate ↵Sumant Kowshik
TEST file git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7664 91177308-0d34-0410-b5e6-96231b3b80d8
2003-08-06Added POOLFLAGS option to run pool allocationSumant Kowshik
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7624 91177308-0d34-0410-b5e6-96231b3b80d8
2003-07-25Simplify some makefile magic, no functional changesChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7336 91177308-0d34-0410-b5e6-96231b3b80d8
2003-07-08Simplified DOTRACING flag.Vikram S. Adve
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7135 91177308-0d34-0410-b5e6-96231b3b80d8
2003-07-08Use libinstr.$(ARCH).a instead of libinstr64.aVikram S. Adve
Also, $(RM) needs -f flag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7128 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-28Make the TestRunner tests not print out horrible things when they runChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6953 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-28Add the test/Scripts directory to the path used by TestRunnerChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6950 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-26New variable which is just the GCCLD toolChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6914 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-18Move llvm tools to the start of the testrunner path, which allows the llvm 'as'Chris Lattner
tool to be found in preference to the system 'as' tool. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6775 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-17Just _EXTEND_ the current path. Don't replace it. Replacing it makes itChris Lattner
impossible for scripts to find user tools like sed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6731 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-16Reconfigured the TOOLS variable so that it points to the current set of toolsJohn Criswell
built by the LLVM build. Added a path for use with the TestRunner.sh script so that it can always find the LLVM tools without having the user place them in his or her path. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6720 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-11Updated to use the new Makefile.common.John Criswell
Replaced the hard-coded compiler variable with the one defined by Makefile.config. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6680 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-04Modify tracing rules to use opt -trace[m] instead of llc -trace[m].Vikram S. Adve
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6607 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-03Improved how tracing can be used:Vikram S. Adve
-- added new targets %.trace-out-llc and %.trace-out-cbe -- either TRACE=yes or TRACEM=yes is still needed and chooses how to trace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6585 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-02Add support for C++ testsChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6540 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-17Add flexibilityChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6246 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-13Add support for the LLVM C++ frontendChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6167 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-11Remove dead makefile codeChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6095 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-11* Remove dead hunk of makefile fragment for dealing with sun compilerChris Lattner
* Move LLC code gen stuff into test/Programs/Makefile.programs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6089 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-09Enable the new C front-end for targets which define LLVMGCCARCHChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6065 91177308-0d34-0410-b5e6-96231b3b80d8
2003-01-21-ENABLE_STATS also enables timingChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5386 91177308-0d34-0410-b5e6-96231b3b80d8
2003-01-16Add support for make TEST=fooChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5333 91177308-0d34-0410-b5e6-96231b3b80d8
2002-12-23Jello is going awayChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5117 91177308-0d34-0410-b5e6-96231b3b80d8
2002-11-19Add support for bugpointChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4768 91177308-0d34-0410-b5e6-96231b3b80d8
2002-11-09Allow tests to be run with release tools when ENABLE_OPTIMIZED=1Chris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4650 91177308-0d34-0410-b5e6-96231b3b80d8
2002-11-02Expose a LJELLO variableChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4495 91177308-0d34-0410-b5e6-96231b3b80d8