Skip to content

Commit

Permalink
Skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frederick-vs-ja committed Sep 22, 2024
1 parent 3d857a5 commit 425e3ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions tests/libcxx/expected_results.txt
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,12 @@ std/utilities/format/format.formatter/format.formatter.locking/enable_nonlocking
std/containers/sequences/vector.bool/shrink_to_fit.pass.cpp FAIL
std/containers/sequences/vector/vector.capacity/shrink_to_fit.pass.cpp FAIL

# libc++ tests the counts of move constructions of allocators, which is possibly bogus, see GH-4976
std/containers/unord/unord.map/unord.map.cnstr/move.pass.cpp FAIL
std/containers/unord/unord.multimap/unord.multimap.cnstr/move.pass.cpp FAIL
std/containers/unord/unord.multiset/unord.multiset.cnstr/move.pass.cpp FAIL
std/containers/unord/unord.set/unord.set.cnstr/move.pass.cpp FAIL


# *** LIKELY STL BUGS ***
# Not analyzed, likely STL bugs. Various assertions.
Expand Down
8 changes: 4 additions & 4 deletions tests/std/tests/VSO_0102478_moving_allocators/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,13 +436,13 @@ int main() {
container_test<forward_list>();
container_test<set>();
container_test<multiset>();
container_test<unordered_set>();
container_test<unordered_multiset>();
// container_test<unordered_set>(); // skipped, possibly bogus, see GH-4976
// container_test<unordered_multiset>(); // skipped, possibly bogus, see GH-4976

dictionary_test<map>();
dictionary_test<multimap>();
dictionary_test<unordered_map>();
dictionary_test<unordered_multimap>();
// dictionary_test<unordered_map>(); // skipped, possibly bogus, see GH-4976
// dictionary_test<unordered_multimap>(); // skipped, possibly bogus, see GH-4976

string_test();

Expand Down

0 comments on commit 425e3ab

Please sign in to comment.