Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions libcxx/test/extensions/gnu/hash/specializations.pass.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

// Prevent <ext/hash_set> from generating deprecated warnings for this test.
// ADDITIONAL_COMPILE_FLAGS: -Wno-deprecated

#include <cassert>
#include <ext/hash_map>
#include <string>

int main(int, char**) {
char str[] = "test";
assert(__gnu_cxx::hash<const char*>()("test") == std::hash<std::string>()("test"));
assert(__gnu_cxx::hash<char*>()(str) == std::hash<std::string>()("test"));
assert(__gnu_cxx::hash<char>()(42) == 42);
assert(__gnu_cxx::hash<signed char>()(42) == 42);
assert(__gnu_cxx::hash<unsigned char>()(42) == 42);
assert(__gnu_cxx::hash<short>()(42) == 42);
assert(__gnu_cxx::hash<unsigned short>()(42) == 42);
assert(__gnu_cxx::hash<int>()(42) == 42);
assert(__gnu_cxx::hash<unsigned int>()(42) == 42);
assert(__gnu_cxx::hash<long>()(42) == 42);
assert(__gnu_cxx::hash<unsigned long>()(42) == 42);

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
//
//===----------------------------------------------------------------------===//

// ADDITIONAL_COMPILE_FLAGS: -Wno-deprecated

#include <assert.h>
#include <ext/hash_map>
#include <string>

int main(int, char**)
{
assert(__gnu_cxx::hash<std::string>()(std::string()) == 0); // error
int main(int, char**) {
assert(__gnu_cxx::hash<std::string>()(std::string()) == 0); // expected-error {{does not provide a call operator}}

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
//
//===----------------------------------------------------------------------===//

// ADDITIONAL_COMPILE_FLAGS: -Wno-deprecated

#include <ext/hash_map>

int main(int, char**)
{
__gnu_cxx::hash_map<int, int> m;
m[1] = 1;
const __gnu_cxx::hash_map<int, int> &cm = m;
cm.find(1)->second = 2; // error
int main(int, char**) {
__gnu_cxx::hash_map<int, int> m;
m[1] = 1;
const __gnu_cxx::hash_map<int, int>& cm = m;
cm.find(1)->second = 2; // expected-error {{cannot assign to return value because function 'operator->' returns a const value}}

return 0;
}
5 changes: 5 additions & 0 deletions libcxx/test/extensions/gnu/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# Only libc++ and libstdc++ have any gnu extensions
if ("stdlib=libc++" not in config.available_features and
"stdlib=libstdc++" not in config.available_features):
config.unsupported = True
36 changes: 0 additions & 36 deletions libcxx/test/libcxx/extensions/hash/specializations.pass.cpp

This file was deleted.

Loading