index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libcxx
/
test
/
std
/
strings
Commit message (
Expand
)
Author
Age
Files
Lines
*
Portability fix: add missing includes and static_casts. Reviewed as https://r...
Marshall Clow
2018-12-18
3
-0
/
+3
*
Rework the C strings tests to use ASSERT_SAME_TYPE. NFC there. Also change cw...
Marshall Clow
2018-12-18
5
-135
/
+148
*
Implement P1209 - Adopt Consistent Container Erasure from Library Fundamental...
Marshall Clow
2018-12-14
2
-0
/
+152
*
[libcxx] Fix test on compilers that do not support char8_t yet
Louis Dionne
2018-12-11
1
-2
/
+4
*
Fix problems with char8_t stuff on compilers that don't support char8_t yet
Marshall Clow
2018-12-11
1
-2
/
+4
*
Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308
Marshall Clow
2018-12-11
34
-92
/
+726
*
Implement P0966 - string::reserve should not shrink
Marshall Clow
2018-11-28
1
-1
/
+8
*
A couple of tests were broken when clang implemented the compiler parts of P0...
Marshall Clow
2018-11-20
2
-0
/
+34
*
[libcxx] [test] Strip trailing whitespace. NFC.
Stephan T. Lavavej
2018-11-14
2
-2
/
+2
*
[libcxx] [test] Add missing <stdexcept> in several tests.
Billy Robert O'Neal III
2018-08-08
13
-0
/
+13
*
Turns out that wide literals U"xxx" and u"xxx" are c++11 and later.
Marshall Clow
2018-07-12
1
-0
/
+2
*
Same reversed ifdef happened twice. Test fix only, NFC to the library.
Marshall Clow
2018-07-11
1
-1
/
+1
*
Fix a test #ifdef that was reversed. NFC to the library.
Marshall Clow
2018-07-11
1
-1
/
+1
*
Implement LWG 2946, 3075 and 3076. Reviewed as https://reviews.llvm.org/D48616
Marshall Clow
2018-07-02
25
-40
/
+454
*
[libcxx] [test] Mark the test as unsupported by apple-clang-8.1.
Volodymyr Sapsai
2018-05-22
1
-1
/
+1
*
[libcxx] [test] Fix whitespace, NFC.
Stephan T. Lavavej
2018-04-12
1
-13
/
+13
*
Implement LWG3034: P0767R1 breaks previously-standard-layout types
Marshall Clow
2018-03-21
2
-0
/
+106
*
[libcxx][test] Adding apple-clang-9 to UNSUPPORTED in iter_alloc_deduction.fa...
Mike Edwards
2018-03-12
1
-1
/
+1
*
[libcxx][test] Reverting r327178 and r327190.
Mike Edwards
2018-03-10
1
-1
/
+2
*
[libcxx][test] Marking libcpp-no-deduction-guides unsupported.
Mike Edwards
2018-03-10
1
-1
/
+1
*
XFAIL: libcpp-no-deduction-guides in libcxx/test/std/strings/basic.string/str...
Mike Edwards
2018-03-09
1
-2
/
+1
*
[libcxx] [test] Fix MSVC warnings and errors.
Stephan T. Lavavej
2018-02-26
1
-1
/
+1
*
Add another test case to the deduction guide for basic_string.
Marshall Clow
2018-02-22
1
-0
/
+11
*
Fix test failure on compilers w/o deduction guides
Eric Fiselier
2018-02-15
1
-2
/
+1
*
[libcxx] [test] Strip trailing whitespace, NFC.
Stephan T. Lavavej
2018-02-12
1
-1
/
+1
*
The apple versions of clang don't support deduction guides yet.
Marshall Clow
2018-02-08
2
-0
/
+2
*
Once more, with feeling. Spell 'clang-4.0' correctly this time
Marshall Clow
2018-02-08
2
-2
/
+2
*
Clean up string's deduction guides tests. Mark old versions of clang as unsup...
Marshall Clow
2018-02-08
3
-58
/
+83
*
Temporarily comment out deduction guide tests while I figure out what to do w...
Marshall Clow
2018-02-08
2
-0
/
+3
*
Implement deduction guide for basic_string as described in P0433
Marshall Clow
2018-02-08
2
-0
/
+110
*
Fix PR#31454 - 'basic_string<T>::push_back() crashes if sizeof(T)>sizeof(long...
Marshall Clow
2018-02-07
1
-2
/
+1
*
Add tests to make sure that <string_view> provides std::size/data/empty in C+...
Marshall Clow
2018-01-30
2
-0
/
+9
*
Fix the definitions of 'reference' and 'pointer' in string_view that no one u...
Marshall Clow
2017-12-20
1
-0
/
+77
*
[libcxx] [test] Strip trailing whitespace. NFC.
Stephan T. Lavavej
2017-12-07
3
-3
/
+3
*
Ooops. I checked in a test for a bug I haven't fixed yet. Temporrarily commen...
Marshall Clow
2017-12-04
1
-0
/
+2
*
Implement P0457R2: 'String Prefix and Suffix Checking' for c++2a
Marshall Clow
2017-12-04
13
-0
/
+861
*
Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed ...
Billy Robert O'Neal III
2017-11-21
7
-10
/
+10
*
More of P0600 - '[[nodiscard]] in the Library' mark empty() as nodiscard in s...
Marshall Clow
2017-11-15
4
-1
/
+63
*
Tolerate [[nodiscard]] annotations in the STL. Reviewed as https://reviews.ll...
Billy Robert O'Neal III
2017-11-15
8
-11
/
+11
*
Mark string_view's constructor from (ptr,len) as noexcept (an extension). Upd...
Marshall Clow
2017-10-24
4
-3
/
+15
*
Mark string_view literals as 'noexcept'. Fixes PR#25054. Thanks to Pavel K fo...
Marshall Clow
2017-10-24
1
-0
/
+6
*
[libcxx] [test] Fix unused local typedef warnings.
Stephan T. Lavavej
2017-09-26
1
-2
/
+2
*
[libcxx] [test] Strip trailing whitespace.
Stephan T. Lavavej
2017-09-26
1
-1
/
+1
*
Add even more string_view tests. These found some bugs in the default paramet...
Marshall Clow
2017-09-07
8
-0
/
+1416
*
Another missing string_view test
Marshall Clow
2017-09-07
1
-0
/
+74
*
Add more string_view tests
Marshall Clow
2017-09-07
3
-0
/
+909
*
[libcxx] [test] Change comments to say C++ instead of c++. NFC.
Stephan T. Lavavej
2017-07-29
1
-1
/
+1
*
[libcxx] [test] Make files consistently end with newlines, NFC.
Stephan T. Lavavej
2017-07-29
1
-1
/
+1
*
[libcxx] [test] Untabify, NFC.
Stephan T. Lavavej
2017-07-29
18
-234
/
+234
*
Add asserts that the nullptr is maintained in string erase operations.
Billy Robert O'Neal III
2017-05-25
4
-0
/
+6
[next]