1. f758dc0 make 'make clean' work on Solaris, per Gabor Greif comment by Nuno Lopes · 15 years ago
  2. 320bd8f make 'make clean' clean everything by Nuno Lopes · 15 years ago
  3. e9a7323 Add target_triple to Clang site configuration. by Daniel Dunbar · 15 years ago
  4. b3496c7 Allow the PYTHON make variable to override the default Python when running Clang tests, from Ken Dyck. by Douglas Gregor · 15 years ago
  5. 9e10cc7 Add the lib path to LD_LIBRARY_PATH, so finding .so works (more) portably. by Daniel Dunbar · 15 years ago
  6. 5e01e3c Remove old test runner, this has moved to LLVM/utils/lit and all known clients by Daniel Dunbar · 15 years ago
  7. d9c2e78 Switch to using the new LLVM lit test runner by default. by Daniel Dunbar · 15 years ago
  8. 1b720a9 Include LLVM {src,obj} root in lit.site.cfg, to support non-standard layouts. by Daniel Dunbar · 15 years ago
  9. 7af18d3 Tweak clang testing. - Move CMake to using the new test runner. by Daniel Dunbar · 15 years ago
  10. 5803331 Teach LIT2 how to run Clang tests in the objdir for srcdir != objdir builds. by Daniel Dunbar · 15 years ago
  11. 724827f Support running tests using the new 'lit', via 'make test LIT2=1'. by Daniel Dunbar · 15 years ago
  12. 2f42d4a Support 'make test TESTSUITE=CodeGen', etc. by Daniel Dunbar · 15 years ago
  13. 1db467f MultiTestRunner: Simplify, cleanup, and rename! by Daniel Dunbar · 15 years ago
  14. 6779647 Tweak MultiTestRunner --path argument. by Daniel Dunbar · 15 years ago
  15. 10aebbb MultiTestRunner: Make sure to point at src dir, for out of tree builds. by Daniel Dunbar · 15 years ago
  16. 44f6c7a Remove TESTDIR initialization, MultiTestRunner can find the test dirs itself. by Daniel Dunbar · 15 years ago
  17. 0126e5e Revert to using shell to find files instead of 'find', that wasn't portable. by Daniel Dunbar · 15 years ago
  18. 060cad5 Stop looking for tests in the Output/ directory. by Daniel Dunbar · 15 years ago
  19. a7afc45 restore proper valgrind support. by Nuno Lopes · 15 years ago
  20. c1daae3 Fix out-of-source regression testing for makefiles by Douglas Gregor · 15 years ago
  21. d5134b0 Switch to the new test runner. - TestRunner.sh still needs to be moved over. by Daniel Dunbar · 15 years ago
  22. 65633f9 Update to account for the great driver renaming. by Mike Stump · 15 years ago
  23. 9a2f1ac Add version information to ISO style test results. by Mike Stump · 15 years ago
  24. e3c75e0 Fix spelling error, and add target triplet to header. by Mike Stump · 15 years ago
  25. 039df91 When testing with VERBOSE=0, report results in the ISO format. We by Mike Stump · 15 years ago
  26. 5bea06a Add test case for __ASSEMBLER__ definition. by Daniel Dunbar · 16 years ago
  27. bd1f63a Ignore Output directories when searching for tests. by Daniel Dunbar · 16 years ago
  28. 4e6153b Another attempt to make test/Makefile return correct error code. by Daniel Dunbar · 16 years ago
  29. 799c6f6 Ignore XFAIL tests when checking for make failure in test/ by Daniel Dunbar · 16 years ago
  30. 852119e Allow 'make TESTDIRS=Sema' in test/ directory for only running a by Daniel Dunbar · 16 years ago
  31. 413ad8b Handle Objective-C++ tests. by Anders Carlsson · 16 years ago
  32. 5323e23 Use full path to count script, and don't treat files with missing RUN by Daniel Dunbar · 16 years ago
  33. 9562726 Missed a test case writing a .ll file. by Daniel Dunbar · 16 years ago
  34. 4565938 Reorder the PATH used during testing so $(ToolDir) and the LLVM by Daniel Dunbar · 16 years ago
  35. 6bfd621 Update test/Makefile to allow testing when using a separate obj by Daniel Dunbar · 16 years ago
  36. 9b20376 Fix some spam from make I accidentally introduced. by Eli Friedman · 16 years ago
  37. 0adb3c9 Get rid of the bogus -depth +0 argument; I really have no clue what the by Eli Friedman · 16 years ago
  38. 8b6b0f6 Change test/Makefile to automatically test all subdirs. by Daniel Dunbar · 16 years ago
  39. 5e8840c Move the C++ Sema tests into a separate SemaCXX directory. by Argyrios Kyrtzidis · 16 years ago
  40. 6ac6ddc move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
  41. dd536bf Remove Analysis-Apple. by Ted Kremenek · 16 years ago
  42. 7627725 Enable the rewriter tests on all platforms; there don't appear to by Eli Friedman · 16 years ago
  43. 9d294b9 remove the old non-parallel test system. 'make' in clang/test now runs by Chris Lattner · 16 years ago
  44. 2daf5b6 Added test case for static analyzer to detect uses of uninitialized pointers as receivers in Objective-C message expressions. by Ted Kremenek · 16 years ago
  45. 1e2db03 Add ability to run clang tests under valgrind. Patch by Sam Bishop. by Gabor Greif · 16 years ago
  46. 5267d7c reduce chattyness of makefiles by Gabor Greif · 16 years ago
  47. 17feadf add 'clean' targets, make sure that 'make test' works after 'make clean' by Gabor Greif · 16 years ago
  48. 15bd799 rewriter tests are darwin specific, don't run them on other platforms. by Chris Lattner · 16 years ago
  49. 5f0ad3f Moved "Rewriter" tests from test/Sema to test/Rewriter. by Ted Kremenek · 17 years ago
  50. 77250c8 Added back 'CodeGen' to test suite (accidentally removed in my last patch). by Ted Kremenek · 17 years ago
  51. a6e4d21 Implemented casts for ConcreteInt and ConcreteIntLValue. by Ted Kremenek · 17 years ago
  52. efb7153 Added the "Serialization" test directory to the set of tests executed. by Ted Kremenek · 17 years ago
  53. bfc5e50 Moved dead-stores test cast to a new test suite subdirectory: Analysis. by Ted Kremenek · 17 years ago
  54. e389201 run .m files as tests by Chris Lattner · 17 years ago
  55. 1467e03 add required directories to the path automatically, so the user doesn't need to worry about it. by Chris Lattner · 17 years ago
  56. 11f2dfe Add missing directory by Bill Wendling · 17 years ago
  57. fa7c645 "Someone typed "PtrToInt" where they meant "IntToPtr". by Chris Lattner · 17 years ago
  58. 9623feb don't pick up random stuff in .svn directories. by Chris Lattner · 17 years ago
  59. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago