summaryrefslogtreecommitdiff
path: root/test/FrontendObjC
Commit message (Collapse)AuthorAge
* Move tests of the ObjC++ front-end to their ownDuncan Sands2008-08-07
| | | | | | | | directory: some people (guess who!) may build llvm-gcc with support for objc but not with support for objc++. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54471 91177308-0d34-0410-b5e6-96231b3b80d8
* Suppress ObjC FE warnings, which cause the test to fail.Dale Johannesen2008-06-10
| | | | | | | | Warnings are legitimate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52187 91177308-0d34-0410-b5e6-96231b3b80d8
* Removing.Bill Wendling2008-05-06
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50786 91177308-0d34-0410-b5e6-96231b3b80d8
* new testcaseChris Lattner2008-04-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50274 91177308-0d34-0410-b5e6-96231b3b80d8
* Rename these tests to use the appropriate suffixes.Dan Gohman2007-12-11
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44867 91177308-0d34-0410-b5e6-96231b3b80d8
* Thanks to the XTARGET line, this test should stillDuncan Sands2007-11-09
| | | | | | | be run on darwin, but I have no way of checking... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43945 91177308-0d34-0410-b5e6-96231b3b80d8
* Run this test only on darwin.Devang Patel2007-11-08
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43912 91177308-0d34-0410-b5e6-96231b3b80d8
* new testcaseChris Lattner2007-10-23
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43252 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed "-arch i386" by popular demand...Bill Wendling2007-10-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43186 91177308-0d34-0410-b5e6-96231b3b80d8
* Now with RUN line!Bill Wendling2007-10-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43185 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove the Foundation.h file because not everyone has that.Bill Wendling2007-10-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43184 91177308-0d34-0410-b5e6-96231b3b80d8
* New test.Devang Patel2007-10-19
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43162 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix the command line.Bill Wendling2007-10-18
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43140 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix test.Devang Patel2007-10-18
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43136 91177308-0d34-0410-b5e6-96231b3b80d8
* Test to make sure we don't generate unwind info for non-64-bit Objective-C.Bill Wendling2007-10-17
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43102 91177308-0d34-0410-b5e6-96231b3b80d8
* Support Objective C++ too.Bill Wendling2007-10-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42610 91177308-0d34-0410-b5e6-96231b3b80d8
* Added testcase for creation of metadata with null pointers.Bill Wendling2007-10-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42609 91177308-0d34-0410-b5e6-96231b3b80d8
* un-XFAIL this test.Bill Wendling2007-10-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42606 91177308-0d34-0410-b5e6-96231b3b80d8
* Temporarily XFAIL this test.Bill Wendling2007-10-03
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42583 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix test.Devang Patel2007-10-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42522 91177308-0d34-0410-b5e6-96231b3b80d8
* While searching for appropriate place for temporaries, do not ↵Devang Patel2007-09-27
| | | | | | over-incerement iterator. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42406 91177308-0d34-0410-b5e6-96231b3b80d8
* New test.Devang Patel2007-05-03
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36661 91177308-0d34-0410-b5e6-96231b3b80d8
* Replace llvm_gcc_supports_ada and llvm_gcc_supports_objc with just a singleReid Spencer2007-04-21
| | | | | | | | | llvm_gcc_supports function that takes the language as an argument. Base that function on the new LLVMGCC_LANGS configured variable so that we don't have to execute feature checks during the test run. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36322 91177308-0d34-0410-b5e6-96231b3b80d8
* Enable Objective-C tests.Devang Patel2007-04-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36281 91177308-0d34-0410-b5e6-96231b3b80d8
* testcase for recent bugfixChris Lattner2007-04-03
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35630 91177308-0d34-0410-b5e6-96231b3b80d8