summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
Commit message (Collapse)AuthorAge
* Remove dead code from the makefile build system.Rafael Espindola2013-07-25
| | | | | | | | Back in r140220 we removed the autoconf code that would set LLVMCC_OPTION since it was only used by the test-suite. This patch now removes code that would only be used if LLVMCC_OPTION was set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187154 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove obsolete object file dumpersNico Rieck2013-04-12
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179362 91177308-0d34-0410-b5e6-96231b3b80d8
* Switch .bc/.ll Makefile rules to use LLVM{CC,CXX} instead of LLVMG{CC,XX}Daniel Dunbar2010-02-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96936 91177308-0d34-0410-b5e6-96231b3b80d8
* Inline and eliminate LLVMG{CC,XX}WITHPATH.Daniel Dunbar2010-02-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96913 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove obsolete -f flags.Dan Gohman2009-08-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
* Failure.sh is dead, remove it.Reid Spencer2007-04-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36316 91177308-0d34-0410-b5e6-96231b3b80d8
* Quote the value of the PATH variable so that Cygwin and Windows can haveReid Spencer2005-02-18
| | | | | | | 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
* Make sure LLVMGCCWITHPATH is used instead of just LLVMGCC so that theReid Spencer2004-12-24
| | | | | | | 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
* Move LLVM tool definitions to Makefile.rulesBrian Gaeke2004-07-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15049 91177308-0d34-0410-b5e6-96231b3b80d8
* test/Libraries have been long gone for a long time now. Since noone noticedChris Lattner2004-06-22
| | | | | | | tehse were broken, just nuke them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14310 91177308-0d34-0410-b5e6-96231b3b80d8
* Make tool names end with .exe on windows. This isn't needed to run theChris Lattner2004-06-01
| | | | | | | | | 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
* Right, define the LPROF variableChris Lattner2004-02-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11273 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove the use of LLVMGCCARCH. Instead, query the compiler for theJohn Criswell2004-01-16
| | | | | | | | 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
* You know you like Makefiles with fewer variables. Next up on the victim listBrian Gaeke2004-01-13
| | | | | | | 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
* Get rid of dead defns of LCC, LCXX, LAS, as per FIXME.Brian Gaeke2004-01-13
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10829 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix overzealous fixme fixingBrian Gaeke2004-01-13
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10827 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove dead definitions of NATGCC and CP, and dead .tll, .tbc rules.Brian Gaeke2004-01-13
| | | | | | | | | | 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
* Move rule to top-level makefileChris Lattner2003-11-29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10255 91177308-0d34-0410-b5e6-96231b3b80d8
* Updated the name of the linker to llvm-link.John Criswell2003-09-16
| | | | | | | This should fix the MultiSource tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8569 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed SPEC so that it would run correctly with the new autoconf-style objectJohn Criswell2003-09-11
| | | | | | | | 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
* Checkin of autoconf-style object root.John Criswell2003-09-06
| | | | | | | | | 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
* Use `llvm-dis' instead of simply `dis'.Misha Brukman2003-08-29
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8217 91177308-0d34-0410-b5e6-96231b3b80d8
* Disable .d file generation for LLVM testsChris Lattner2003-08-22
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8052 91177308-0d34-0410-b5e6-96231b3b80d8
* Point to the RIGHT GCC library directoryChris Lattner2003-08-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7998 91177308-0d34-0410-b5e6-96231b3b80d8
* Some of this gets hoisted up to Makefile.commonChris Lattner2003-08-15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7856 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed the support for pool allocation testing. This will be in a separate ↵Sumant Kowshik2003-08-07
| | | | | | TEST file git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7664 91177308-0d34-0410-b5e6-96231b3b80d8
* Added POOLFLAGS option to run pool allocationSumant Kowshik2003-08-06
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7624 91177308-0d34-0410-b5e6-96231b3b80d8
* Simplify some makefile magic, no functional changesChris Lattner2003-07-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7336 91177308-0d34-0410-b5e6-96231b3b80d8
* Simplified DOTRACING flag.Vikram S. Adve2003-07-08
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7135 91177308-0d34-0410-b5e6-96231b3b80d8
* Use libinstr.$(ARCH).a instead of libinstr64.aVikram S. Adve2003-07-08
| | | | | | | Also, $(RM) needs -f flag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7128 91177308-0d34-0410-b5e6-96231b3b80d8
* Make the TestRunner tests not print out horrible things when they runChris Lattner2003-06-28
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6953 91177308-0d34-0410-b5e6-96231b3b80d8
* Add the test/Scripts directory to the path used by TestRunnerChris Lattner2003-06-28
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6950 91177308-0d34-0410-b5e6-96231b3b80d8
* New variable which is just the GCCLD toolChris Lattner2003-06-26
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6914 91177308-0d34-0410-b5e6-96231b3b80d8
* Move llvm tools to the start of the testrunner path, which allows the llvm 'as'Chris Lattner2003-06-18
| | | | | | | 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
* Just _EXTEND_ the current path. Don't replace it. Replacing it makes itChris Lattner2003-06-17
| | | | | | | 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
* Reconfigured the TOOLS variable so that it points to the current set of toolsJohn Criswell2003-06-16
| | | | | | | | | 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
* Updated to use the new Makefile.common.John Criswell2003-06-11
| | | | | | | | 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
* Modify tracing rules to use opt -trace[m] instead of llc -trace[m].Vikram S. Adve2003-06-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6607 91177308-0d34-0410-b5e6-96231b3b80d8
* Improved how tracing can be used:Vikram S. Adve2003-06-03
| | | | | | | | -- 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
* Add support for C++ testsChris Lattner2003-06-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6540 91177308-0d34-0410-b5e6-96231b3b80d8
* Add flexibilityChris Lattner2003-05-17
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6246 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for the LLVM C++ frontendChris Lattner2003-05-13
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6167 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove dead makefile codeChris Lattner2003-05-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6095 91177308-0d34-0410-b5e6-96231b3b80d8
* * Remove dead hunk of makefile fragment for dealing with sun compilerChris Lattner2003-05-11
| | | | | | | * 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
* Enable the new C front-end for targets which define LLVMGCCARCHChris Lattner2003-05-09
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6065 91177308-0d34-0410-b5e6-96231b3b80d8
* -ENABLE_STATS also enables timingChris Lattner2003-01-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5386 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for make TEST=fooChris Lattner2003-01-16
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5333 91177308-0d34-0410-b5e6-96231b3b80d8
* Jello is going awayChris Lattner2002-12-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5117 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for bugpointChris Lattner2002-11-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4768 91177308-0d34-0410-b5e6-96231b3b80d8
* Allow tests to be run with release tools when ENABLE_OPTIMIZED=1Chris Lattner2002-11-09
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4650 91177308-0d34-0410-b5e6-96231b3b80d8