summaryrefslogtreecommitdiffstats
path: root/llvm/utils/unittest/googletest/gtest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Move all of the GoogleTest files back to the same locations they occupyChandler Carruth2013-11-151-4866/+0
| | | | | | | | | | | | | externally to simplify our integration of GoogleTest into LLVM. Also, build the single source file gtest-all.cc instead of the individual source files as we don't expect these to change and thus gain nothing from increased incrementality in compiles. This makes our standard build of googletest exactly like upstream's recommended build and the sanitizer's build. It also simplifies the steps of importing a new version should we ever want one. llvm-svn: 194801
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. ↵Sylvestre Ledru2012-09-271-34/+34
| | | | | | See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164767 llvm-svn: 164768
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-271-34/+34
| | | | llvm-svn: 164767
* Fix a typo (the the => the)Sylvestre Ledru2012-07-231-1/+1
| | | | llvm-svn: 160621
* Help GCC along with code that's actually unreachable.David Blaikie2012-01-221-0/+3
| | | | | | | | Unfortunately I don't think there's a fix for this that will work upstream and also satisfy Clang's -Wunreachable-code, which is a pity. But I'll give it some more thought -perhaps there's some way out. llvm-svn: 148645
* Remove unreachable defaults from gtest.David Blaikie2012-01-211-2/+0
| | | | | | This will ensure LLVM and Clang build -Wswitch-enum-redundant-default (an on-by-default warning I'm about to add to Clang). llvm-svn: 148639
* Merge gtest-1.6.0.Jay Foad2011-07-271-471/+661
| | | | llvm-svn: 136212
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
| | | | | | Luis Felipe Strano Moraes! llvm-svn: 129558
* gtest: Fix warnings on MinGW.Michael J. Spencer2010-10-071-3/+3
| | | | llvm-svn: 115945
* delete dead code.Chris Lattner2010-09-041-29/+0
| | | | llvm-svn: 113075
* Silence a warning.Jakob Stoklund Olesen2010-07-121-1/+1
| | | | llvm-svn: 108169
* Merge gtest-1.5.0.Benjamin Kramer2010-06-021-150/+212
| | | | llvm-svn: 105354
* Merge gtest-1.4.0.Benjamin Kramer2010-06-021-704/+1025
| | | | llvm-svn: 105353
* Merge gtest-1.3.0.Benjamin Kramer2010-06-021-113/+483
| | | | | | | OSX users: make sure that CrashReporter is disabled when running unit tests. Death tests are enabled now so you'll get a ton of message boxes. llvm-svn: 105352
* Remove superfluous 'extern' variable that was causing a warning with clang.Bill Wendling2009-12-161-1/+1
| | | | llvm-svn: 91552
* Fix MingW build: define GTEST_OS_WINDOWS if OS is MingW, but disableJulien Lerouge2009-02-121-6/+6
| | | | | | exceptions. llvm-svn: 64367
* * Removed gtest-all.cc; .cc files including other .cc files is weirdMisha Brukman2009-01-011-1/+1
| | | | | | | | | | | | | * 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-011-0/+3951
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
OpenPOWER on IntegriCloud