- Apr 05, 2013
-
-
Alexey Samsonov authored
llvm-svn: 178852
-
- Mar 13, 2013
-
-
Evgeniy Stepanov authored
It is required when building tests with ASan or MSan. llvm-svn: 176941
-
- Jan 26, 2013
-
-
NAKAMURA Takumi authored
llvm-svn: 173528
-
- Nov 21, 2012
-
-
Andrew Kaylor authored
llvm-svn: 168459
-
- Nov 01, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 167208
-
- Oct 15, 2012
-
-
David Blaikie authored
This fixes a CMake build break introduced by r165739. Thanks Jan Voung for the quick suggestion/fix. llvm-svn: 165978
-
- Oct 10, 2012
-
-
NAKAMURA Takumi authored
FIXME: Would you like to run llvm/unittests w/o LLVM_BUILD_TESTS regardless of LLVM_BUILD_TOOLS? llvm-svn: 165619
-
- Aug 29, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 162813
-
- Aug 03, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 161229
-
- Jul 12, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 160123
-
- Jul 02, 2012
-
-
Chandler Carruth authored
targets. llvm-svn: 159597
-
Chandler Carruth authored
in the abstraction for lit test suites so that the various other layers of abstraction pick up the same behavioral fix, and so that we still get a complete list of dependencies for the 'check-all' target. This should fix the follow-on issues of the same nature with various other build targets, including Clang targets. Sorry for the churn, and again thanks to Matt for testing and breaking this more thoroughly. llvm-svn: 159593
-
Chandler Carruth authored
No functionality changed here, except that the CMake installed by default on Ubuntu Lucid should actually work with the makefile generators now. Thanks to Matt for the report and head-desking required to figure out why it was failing. llvm-svn: 159588
-
- Jun 30, 2012
-
-
Chandler Carruth authored
re-used. Also, build in direct support for accumulating a set of lit parameters, arguments, and testsuites to run as part of a 'check-all' rule. This sinks 'check-all' from a Clang-specific construct to a generic construct of the project. llvm-svn: 159482
-
- Jun 29, 2012
-
-
Chandler Carruth authored
Clang has been getting along fine without this for quite some time. llvm-svn: 159400
-
- Jun 28, 2012
-
-
Chandler Carruth authored
a dedicated helper function. This will enable re-using the same logic for Clang's lit setup, etc. llvm-svn: 159333
-
Chandler Carruth authored
This is another vestige of the DejaGNU roots. There were FIXMEs in the lit setup to add a 'lit.site.cfg', which has been around for quite some time now, so I've properly switched the handling of the 4 things actually used in site.exp to go through lit.site.cfg now. No more parsing of the .exp file, one fewer configure-style generated file, etc., etc. llvm-svn: 159313
-
- Jun 27, 2012
-
-
Chandler Carruth authored
'check-llvm'. Don't worry! 'check' still works! =] To rationalize the names of targets used to run tests, the vague plan is the following: make check-llvm # run LLVM reg/unit tests (currently 'check') make check-clang # run Clang reg/unit tests (currently 'clang-test') make check-rt # run CompilerRT reg/unit tests make check-asan # run ASan reg/unit tests (subset of -rt) make check-tsan # run TSan reg/unit tests (subset of -rt) make check-all # run as much of the above as is available The last one respects what projects are checked out and built for a given tree. Personally, I would like to eventually make 'check' be an alias for 'check-all'. For now however, it is an alias for 'check-llvm', and thus no behavior has changed. While this patch and my plan only really apply to CMake, I think it might be good to similarly rationalize the naming scheme for the Make builds. llvm-svn: 159258
-
- May 17, 2012
-
-
Danil Malyshev authored
- Added HOST_ARCH to Makefile.config.in The HOST_ARCH will be used by MCJIT tests filter, because MCJIT supported only x86 and ARM architectures now. llvm-svn: 157015
-
- Apr 20, 2012
-
-
Manuel Klimek authored
llvm-svn: 155197
-
- Apr 19, 2012
-
-
Michael J. Spencer authored
llvm-ld is no longer useful and causes confusion and so it is being removed. * Does not work very well on Windows because it must call a gcc like driver to assemble and link. * Has lots of hard coded paths which are wrong on many systems. * Does not understand most of ld's options. * Can be partially replaced by llvm-link | opt | {llc | as, llc -filetype=obj} | ld, or fully replaced by Clang. I know of no production use of llvm-ld, and hacking use should be replaced by Clang's driver. llvm-svn: 155147
-
- Mar 30, 2012
-
-
Bill Wendling authored
llvm-svn: 153701
-
- Mar 29, 2012
-
-
Danil Malyshev authored
Added ExecutionEngine/MCJIT tests. llvm-svn: 153694
-
- Mar 01, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 151795
-
- Jan 30, 2012
-
-
NAKAMURA Takumi authored
llvm-svn: 149220
-
- Dec 16, 2011
-
-
Manuel Klimek authored
llvm-svn: 146735
-
- Nov 05, 2011
-
-
Daniel Dunbar authored
llvm-svn: 143742
-
- Nov 02, 2011
-
-
Nick Lewycky authored
llvm-svn: 143571
-
Daniel Dunbar authored
longer need substitutions for. llvm-svn: 143555
-
- Sep 27, 2011
-
-
NAKAMURA Takumi authored
test/CMakeLists.txt: Depend on llvm-objdump. "make check" is expected to resolve test-dependent targets on CMake build. llvm-svn: 140641
-
- Jun 28, 2011
-
-
NAKAMURA Takumi authored
llvm-svn: 134033
-
Andrew Trick authored
llvm-svn: 134008
-
- Jun 23, 2011
-
-
Andrew Trick authored
llvm-svn: 133729
-
Andrew Trick authored
llvm-svn: 133725
-
- Jun 22, 2011
-
-
Andrew Trick authored
test/lit.site.cfg, not Unit/test/lit.site.cfg. llvm-svn: 133608
-
- Jun 17, 2011
-
-
Andrew Trick authored
llvm-svn: 133205
-
- Apr 13, 2011
-
-
Oscar Fuentes authored
generators. It may improve robustness when testing from VS too. Based on a patch by David Neto! llvm-svn: 129398
-
- Feb 20, 2011
-
-
Oscar Fuentes authored
Requires CMake 2.8.3 or newer. llvm-svn: 126092
-
- Dec 10, 2010
-
-
NAKAMURA Takumi authored
llvm-svn: 121476
-
NAKAMURA Takumi authored
cmake/modules/AddLLVM.cmake: Add empty "phony" target in add_llvm_loadable_module() even if loadable module were not supported. llvm-svn: 121455
-