summaryrefslogtreecommitdiffstats
path: root/llvm/utils/unittest
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove superfluous 'extern' variable that was causing a warning with clang.Bill Wendling2009-12-161-1/+1
| | | | llvm-svn: 91552
* Remove / use flags that are now set in the Makefile.config.Julien Lerouge2009-10-262-4/+0
| | | | llvm-svn: 85149
* Haiku porting patches, Credit to Paul Davey.Edward O'Callaghan2009-10-121-1/+3
| | | | llvm-svn: 83823
* Follow googletest logic for suppressing warnings in unittests/UnitTestMain.Daniel Dunbar2009-09-202-2/+4
| | | | llvm-svn: 82373
* Move unittest driver to utils/unittest/UnitTestMain.Daniel Dunbar2009-09-133-1/+35
| | | | | | | - This eliminates a race between building the unittests and linking the UnitTestMain library. llvm-svn: 81719
* Teach googletest to use raw_ostream instead of just std::ostream.Jeffrey Yasskin2009-09-052-1/+26
| | | | | | | | This can break when there are implicit conversions from types raw_ostream understands but std::ostream doesn't, but it increases the number of cases that Just Work. llvm-svn: 81093
* The attached patches attempt to fix cross builds. For example, if youAnton Korobeynikov2009-08-181-1/+1
| | | | | | | | | | | | | try to use i686-darwin to build for arm-eabi, you'll quickly run into several false assumptions that the target OS must be the same as the host OS. These patches split $(OS) into $(HOST_OS) and $(TARGET_OS) to help builds like "make check" and the test-suite able to cross compile. Along the way a target of *-unknown-eabi is defined as "Freestanding" so that TARGET_OS checks have something to work with. Patch by Sandeep Patel! llvm-svn: 79296
* Remove trailing slashes from include paths. Some versions of mingw don't ↵Benjamin Kramer2009-07-271-1/+1
| | | | | | like them. llvm-svn: 77188
* Change 'make install' to install tblgen, for better support of out-of-tree ↵Chris Lattner2009-05-081-0/+2
| | | | | | | | targets, patch by Mikael Lepistö! llvm-svn: 71226
* Fix MingW build: define GTEST_OS_WINDOWS if OS is MingW, but disableJulien Lerouge2009-02-122-6/+10
| | | | | | exceptions. llvm-svn: 64367
* FIx spelling.Mike Stump2009-02-051-2/+2
| | | | llvm-svn: 63883
* Probe for flags before using them to try to help compiling withMike Stump2009-02-051-1/+4
| | | | | | | compilers that don't support those flags. This hopefully will help gcc 3.X compile this code. http://llvm.org/PR3487 llvm-svn: 63882
* Renamed Google Test license file from COPYING to LICENSE.TXT to match LLVMMisha Brukman2009-01-052-1/+1
| | | | | | conventions, per John Criswell. llvm-svn: 61708
* We also removed gtest-all.cc from the distribution tarball.Misha Brukman2009-01-021-3/+2
| | | | llvm-svn: 61581
* * Removed gtest-all.cc; .cc files including other .cc files is weirdMisha Brukman2009-01-018-85/+16
| | | | | | | | | | | | | * Removed gtest_main.cc: we have our own main() elsewhere * Simplified the Makefile as we don't need SOURCES * Moved the internal header to gtest/internal/ * Simplified the Makefile to remove -I param to CPP.Flags * Updated README.LLVM with all the steps I took to massage GTest to work in LLVM so far llvm-svn: 61540
* Moved Google Test code up one directory so that we can use a standard LLVMMisha Brukman2009-01-0112-2/+35
| | | | | | | | | Makefile with it, without resorting to the use of VPATH. Also added Makefiles at every level of the directory tree to properly recurse to Google Test and build it as a library (original Makefiles by Talin). llvm-svn: 61539
* Import of Google Test 1.2.1, with the non-essential bits removed.Misha Brukman2008-12-3129-0/+22431
Added a README.LLVM file to indicate which files and directories were removed from the original source tarball. llvm-svn: 61526
OpenPOWER on IntegriCloud