summaryrefslogtreecommitdiff
path: root/unittests
Commit message (Expand)AuthorAge
...
* remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner2009-09-26
* Fix a compile failure introduced by r82675 on MinGW which doesn't haveJeffrey Yasskin2009-09-25
* add and document regex support for FileCheck. You can now do stuff like:Chris Lattner2009-09-24
* Roll back r82348, which introduced an infinite loop in ParseCStringVector() thatJeffrey Yasskin2009-09-24
* Fix a few more conversion warnings on 4.0Daniel Dunbar2009-09-18
* Another try at fixing compile warnings on 4.0Daniel Dunbar2009-09-17
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-16
* Drop the raw_ostream required buffer size to 1.Daniel Dunbar2009-09-15
* Attempt to fix some 4.0.0 build warnings.Daniel Dunbar2009-09-14
* Build (not test) the unittests as part of a normal build.Daniel Dunbar2009-09-13
* Move unittest driver to utils/unittest/UnitTestMain.Daniel Dunbar2009-09-13
* Revert unittests build changes temporarily, the unit test build isn't -j safe.Daniel Dunbar2009-09-13
* Build (not test) the unittests as part of a normal build.Daniel Dunbar2009-09-13
* Make TypeBuilder's result depend on the LLVMContext it's passed.Jeffrey Yasskin2009-09-09
* Update unittests for MDNode uniquing disable.Daniel Dunbar2009-09-07
* Simplify, now that gtest supports raw_ostream directly.Daniel Dunbar2009-09-06
* Now that googletest can print ConstantRange, use EXPECT_EQ when testing forNick Lewycky2009-09-05
* Teach googletest to use raw_ostream instead of just std::ostream.Jeffrey Yasskin2009-09-05
* Add test for PR4873, which works for me.Daniel Dunbar2009-09-03
* Now Bitcode reader bug is fixed. Reapply 80839.Devang Patel2009-09-03
* Revert 80839 for now. It causes test failures.Devang Patel2009-09-02
* Use CallbackVH, instead of WeakVH, to hold MDNode elements. Devang Patel2009-09-02
* Disable uniqueness test for now.Devang Patel2009-09-02
* update unit test for previous change.Chris Lattner2009-08-31
* Add regular expression matching support, based on OpenBSD regexec()/regcomp()Torok Edwin2009-08-30
* split raw_os_ostream out to its own header and implementation file. ThisChris Lattner2009-08-24
* Unbreak unit tests.Daniel Dunbar2009-08-24
* Fix off-by-one in llvm::Format::print.Daniel Dunbar2009-08-23
* convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since Chris Lattner2009-08-23
* upgrade for removed functions.Chris Lattner2009-08-23
* Correct for recent assert change.Bill Wendling2009-08-21
* Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9.Erick Tryzelaar2009-08-21
* Allow '+' to appear in APInt strings, and add more unit tests.Erick Tryzelaar2009-08-21
* Add support for including '+' in APFloat strings, more asserts,Erick Tryzelaar2009-08-20
* Fix two APFloat bugs in converting hexadecimal constants.Daniel Dunbar2009-08-20
* Fixed header comment.Misha Brukman2009-08-20
* Add min and max tests.Daniel Dunbar2009-08-19
* Remove SmallString::append_*int* unit tests.Benjamin Kramer2009-08-19
* Add SmallVector::{capacity,set_size}.Daniel Dunbar2009-08-19
* Improve Triple to recognize the OS in i386-mingw32.Daniel Dunbar2009-08-18
* Fix pasto in StringRef::count(char)Daniel Dunbar2009-08-18
* Add StringRef::count({char,StringRef})Daniel Dunbar2009-08-18
* Wrap unit test death tests in GTEST_HAS_DEATH_TESTErick Tryzelaar2009-08-17
* Change APFloatTest from using ASSERTs to EXPECTsErick Tryzelaar2009-08-17
* Modify APFloat to take a StringRef instead of a c string.Erick Tryzelaar2009-08-16
* Add failure tests to APInt unit test.Erick Tryzelaar2009-08-16
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef.Daniel Dunbar2009-08-13
* Fix unit test on FreeBSD. We need to make sure there is enough space to save ...Benjamin Kramer2009-08-12
* StringRef: Add find(char) and find(StringRef).Daniel Dunbar2009-08-11