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
/
utilities
/
memory
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[libcxx] [test] Strip trailing whitespace. NFC.
Stephan T. Lavavej
2017-05-04
1
-1
/
+1
*
Allow a standard library to implement conditional noexcept for optional and u...
Billy Robert O'Neal III
2017-04-18
1
-2
/
+6
*
Rewrite and cleanup unique_ptr tests.
Eric Fiselier
2017-04-15
152
-8073
/
+0
*
Fix template >> within C++03 code
Eric Fiselier
2017-04-13
1
-1
/
+1
*
Fix C++03 test failures
Eric Fiselier
2017-04-13
2
-2
/
+2
*
Add tests that std::unique_ptr's default constructor is constexpr.
Eric Fiselier
2017-04-13
3
-49
/
+50
*
[libcxx] Fix __compressed_pair so it doesn't copy the argument multiple times...
Eric Fiselier
2017-04-12
1
-13
/
+14
*
Fix test failures with older Clang versions
Eric Fiselier
2017-04-12
2
-0
/
+4
*
Fix incorrectly qualified return type from unique_ptr::get_deleter().
Eric Fiselier
2017-04-12
2
-22
/
+60
*
Implement LWG#2873: 'Add noexcept to several shared_ptr related functions' Th...
Marshall Clow
2017-04-11
5
-15
/
+35
*
Revert "Allow a standard library to implement conditional noexcept for option...
Akira Hatanaka
2017-04-07
1
-5
/
+1
*
Add noexcept(false) to more strongly indicate that not being noexcept is impo...
Billy Robert O'Neal III
2017-04-06
1
-1
/
+1
*
Allow a standard library to implement conditional noexcept for optional and u...
Billy Robert O'Neal III
2017-04-06
1
-1
/
+5
*
Silence a couple of 'unused variable' warnings in c++03 tests. No functional ...
Marshall Clow
2017-03-23
2
-0
/
+2
*
Implement P0599: 'noexcept for hash functions'. Fix a couple of hash function...
Marshall Clow
2017-03-23
1
-0
/
+1
*
Add deployment knobs to tests (for Apple platforms)
Mehdi Amini
2017-03-15
10
-20
/
+20
*
Fixed unintentional assignment-in-assert in new "extending memory management ...
Billy Robert O'Neal III
2017-03-14
6
-6
/
+6
*
Remove more usages of REQUIRES-ANY in the test-suite
Eric Fiselier
2017-03-02
3
-3
/
+3
*
Update all bug URL's to point to https://bugs.llvm.org/...
Eric Fiselier
2017-02-17
2
-3
/
+3
*
Remove auto_ptr in C++17. Get it back by defining _LIBCPP_ENABLE_CXX17_REMOVE...
Marshall Clow
2017-01-24
3
-1
/
+3
*
Fix recent build errors
Eric Fiselier
2017-01-21
1
-2
/
+5
*
Implement P0513R0 - "Poisoning the Hash"
Eric Fiselier
2017-01-21
3
-0
/
+102
*
Refactor unique_ptr/shared_ptr deleter test types into single header.
Eric Fiselier
2017-01-20
48
-455
/
+47
*
[libcxx] [test] Fix comment typos, strip trailing whitespace.
Stephan T. Lavavej
2017-01-18
2
-3
/
+3
*
Replace _LIBCPP_HAS_NO_DELETED_FUNCTIONS with _LIBCPP_CXX03_LANG
Eric Fiselier
2017-01-06
1
-1
/
+3
*
Fix PR26961 - Add default constructor to std::pointer_safety struct.
Eric Fiselier
2017-01-05
1
-0
/
+12
*
Fix std::pointer_safety type in ABI v2
Eric Fiselier
2017-01-05
1
-0
/
+2
*
Fix unused parameters and variables
Eric Fiselier
2016-12-23
2
-3
/
+4
*
Protect tests for std::uninitialized_{copy,fill} under libcpp-no-exceptions
Roger Ferrer Ibanez
2016-11-24
4
-8
/
+44
*
[libcxx] [test] D26813: allocator<const T> is non-Standard.
Stephan T. Lavavej
2016-11-18
2
-18
/
+18
*
Make one of the new tests fail correctly on pre-C++17 systems
Marshall Clow
2016-11-14
1
-0
/
+6
*
Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last...
Marshall Clow
2016-11-14
1
-0
/
+20
*
Protect smart-pointer tests under no exceptions
Roger Ferrer Ibanez
2016-11-14
2
-2
/
+8
*
[libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER.
Stephan T. Lavavej
2016-11-04
1
-1
/
+2
*
Change from "XFAIL: libcpp-no-exceptions" to "UNSUPPORTED: libcpp-no-exceptio...
Roger Ferrer Ibanez
2016-10-31
6
-6
/
+6
*
Fix incorrect exception handling behavior in the uninitialized algorithms
Eric Fiselier
2016-10-11
5
-24
/
+14
*
Provide a constexpr addressof with GCC 7.
Eric Fiselier
2016-10-10
1
-1
/
+1
*
Remove all instances of _LIBCPP_HAS_NO_RVALUE_REFERENCES from test/std/utilities
Eric Fiselier
2016-10-01
8
-93
/
+40
*
Replace test_throw.h header with a single test macro
Eric Fiselier
2016-10-01
6
-12
/
+6
*
[libc++] Remove various C++03 feature test macros
Eric Fiselier
2016-09-25
7
-25
/
+35
*
Fix failure on 03 bot
Marshall Clow
2016-09-22
1
-2
/
+2
*
Add missing _v traits. is_bind_expression_v, is_placeholder_v and uses_alloca...
Marshall Clow
2016-09-22
1
-8
/
+30
*
Fix an MSVC x64 compiler warning. Patch from STL@microsoft.com
Eric Fiselier
2016-08-03
3
-9
/
+12
*
Fix unique_ptr.runtime tests for null inputs. Patch from STL@microsoft.com
Eric Fiselier
2016-07-24
2
-0
/
+13
*
Fix memory leak in test.
Eric Fiselier
2016-07-24
1
-0
/
+4
*
Implement P0040r3: Extending memory management tools
Eric Fiselier
2016-07-24
9
-0
/
+871
*
Implement P0163r0. Add shared_ptr::weak_type.
Eric Fiselier
2016-06-27
1
-0
/
+6
*
Fix C++03 failure in enable_shared_from_this test
Eric Fiselier
2016-06-27
1
-1
/
+2
*
Fix PR27115 - enable_shared_from_this does not work as a virtual base class.
Eric Fiselier
2016-06-26
1
-0
/
+16
*
Make shared_ptr constructor tests use count_new.hpp
Eric Fiselier
2016-06-22
5
-151
/
+92
[prev]
[next]