aboutsummaryrefslogtreecommitdiff
path: root/test/Makefile
AgeCommit message (Collapse)Author
2008-09-16Ignore XFAIL tests when checking for make failure in test/Daniel Dunbar
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56262 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-28Allow 'make TESTDIRS=Sema' in test/ directory for only running aDaniel Dunbar
subset of tests. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55513 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-23Handle Objective-C++ tests.Anders Carlsson
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55254 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-21Use full path to count script, and don't treat files with missing RUNDaniel Dunbar
lines as errors. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55109 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-21Missed a test case writing a .ll file.Daniel Dunbar
Suppress count output from 'make test' on errors (used to generate result code). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55107 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-21Reorder the PATH used during testing so $(ToolDir) and the LLVMDaniel Dunbar
scripts dir appear before the user path. - This is an attempt to pick up the right executables. We should probably be substituting the exact things we want for clang a la the LLVM test script. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55105 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-21Update test/Makefile to allow testing when using a separate objDaniel Dunbar
directory. - Also, return proper error code if testing fails. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55103 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-20Fix some spam from make I accidentally introduced.Eli Friedman
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55027 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-20Get rid of the bogus -depth +0 argument; I really have no clue what the Eli Friedman
heck it does on Darwin, but it's not part of POSIX, and the GNU version of find errors out on it. On a side note, there are a couple of new failures due to tests including OS X specific headers. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55019 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-18Change test/Makefile to automatically test all subdirs.Daniel Dunbar
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54923 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-16Move the C++ Sema tests into a separate SemaCXX directory.Argyrios Kyrtzidis
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54853 91177308-0d34-0410-b5e6-96231b3b80d8
2008-07-26move all objc sema tests into a new SemaObjC directory. Next step is toChris Lattner
remove the objc- prefix from the tests that use it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54084 91177308-0d34-0410-b5e6-96231b3b80d8
2008-06-16Remove Analysis-Apple.Ted Kremenek
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52366 91177308-0d34-0410-b5e6-96231b3b80d8
2008-06-07Enable the rewriter tests on all platforms; there don't appear to Eli Friedman
be any regressions from this on my machine, but please let me know if you run into issues. (The idea here is that it's better to run all tests on all platforms if at all possible.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52083 91177308-0d34-0410-b5e6-96231b3b80d8
2008-04-06remove the old non-parallel test system. 'make' in clang/test now runsChris Lattner
the tests in parallel. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49290 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-26Added test case for static analyzer to detect uses of uninitialized pointers ↵Ted Kremenek
as receivers in Objective-C message expressions. Added test case directory "Analysis-Apple" which is only run on Apple (darwin) machines. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48844 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-20Add ability to run clang tests under valgrind. Patch by Sam Bishop.Gabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48621 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-20reduce chattyness of makefilesGabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48597 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-18add 'clean' targets, make sure that 'make test' works after 'make clean'Gabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48488 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-10rewriter tests are darwin specific, don't run them on other platforms.Chris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48168 91177308-0d34-0410-b5e6-96231b3b80d8
2008-02-01Moved "Rewriter" tests from test/Sema to test/Rewriter.Ted Kremenek
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46640 91177308-0d34-0410-b5e6-96231b3b80d8
2008-02-01Added back 'CodeGen' to test suite (accidentally removed in my last patch).Ted Kremenek
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46631 91177308-0d34-0410-b5e6-96231b3b80d8
2008-02-01Implemented casts for ConcreteInt and ConcreteIntLValue.Ted Kremenek
Implemented '==' and '!=' for ConcreteIntLValue. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46630 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-28Added the "Serialization" test directory to the set of tests executed.Ted Kremenek
Introduced a few line breaks to make the Makefile easier to read. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44413 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-24Moved dead-stores test cast to a new test suite subdirectory: Analysis.Ted Kremenek
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44305 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-23run .m files as tests Chris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41308 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-16add required directories to the path automatically, so the user doesn't need ↵Chris Lattner
to worry about it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39901 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-14Add missing directoryBill Wendling
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39853 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-13"Someone typed "PtrToInt" where they meant "IntToPtr".Chris Lattner
I've added a tests/CodeGen directory, and a test for this case that used to fail and now passes." Patch by Keith Bauer git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39794 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-12don't pick up random stuff in .svn directories.Chris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39783 91177308-0d34-0410-b5e6-96231b3b80d8
2007-07-11Stage two of getting CFE top correct.Reid Spencer
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39734 91177308-0d34-0410-b5e6-96231b3b80d8