You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
Initial commit
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// id& operator=(const id&) = default;
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id0;
|
||||
std::thread::id id1;
|
||||
id1 = id0;
|
||||
assert(id1 == id0);
|
||||
id1 = std::this_thread::get_id();
|
||||
assert(id1 != id0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// id(const id&) = default;
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id0;
|
||||
std::thread::id id1 = id0;
|
||||
assert(id1 == id0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// id();
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id;
|
||||
assert(id == std::thread::id());
|
||||
|
||||
return 0;
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: no-threads
|
||||
// UNSUPPORTED: c++03
|
||||
|
||||
// <thread>
|
||||
|
||||
// Test that <thread> provides all of the arithmetic, enum, and pointer
|
||||
// hash specializations.
|
||||
|
||||
#include <thread>
|
||||
|
||||
#include "poisoned_hash_helper.h"
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**) {
|
||||
test_library_hash_specializations_available();
|
||||
{
|
||||
test_hash_enabled_for_type<std::thread::id>();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// bool operator==(thread::id x, thread::id y);
|
||||
// bool operator!=(thread::id x, thread::id y);
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id0;
|
||||
std::thread::id id1;
|
||||
id1 = id0;
|
||||
assert( (id1 == id0));
|
||||
assert(!(id1 != id0));
|
||||
id1 = std::this_thread::get_id();
|
||||
assert(!(id1 == id0));
|
||||
assert( (id1 != id0));
|
||||
|
||||
return 0;
|
||||
}
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// bool operator< (thread::id x, thread::id y);
|
||||
// bool operator<=(thread::id x, thread::id y);
|
||||
// bool operator> (thread::id x, thread::id y);
|
||||
// bool operator>=(thread::id x, thread::id y);
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id0;
|
||||
std::thread::id id1;
|
||||
std::thread::id id2 = std::this_thread::get_id();
|
||||
assert(!(id0 < id1));
|
||||
assert( (id0 <= id1));
|
||||
assert(!(id0 > id1));
|
||||
assert( (id0 >= id1));
|
||||
assert(!(id0 == id2));
|
||||
if (id0 < id2) {
|
||||
assert( (id0 <= id2));
|
||||
assert(!(id0 > id2));
|
||||
assert(!(id0 >= id2));
|
||||
} else {
|
||||
assert(!(id0 <= id2));
|
||||
assert( (id0 > id2));
|
||||
assert( (id0 >= id2));
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: no-threads
|
||||
// UNSUPPORTED: no-localization
|
||||
|
||||
// <thread>
|
||||
|
||||
// class thread::id
|
||||
|
||||
// template<class charT, class traits>
|
||||
// basic_ostream<charT, traits>&
|
||||
// operator<<(basic_ostream<charT, traits>& out, thread::id id);
|
||||
|
||||
#include <thread>
|
||||
#include <sstream>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id0 = std::this_thread::get_id();
|
||||
std::ostringstream os;
|
||||
os << id0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// UNSUPPORTED: no-threads
|
||||
|
||||
// <thread>
|
||||
|
||||
// template <class T>
|
||||
// struct hash
|
||||
// {
|
||||
// size_t operator()(T val) const;
|
||||
// };
|
||||
|
||||
// Not very portable
|
||||
|
||||
#include <thread>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
std::thread::id id1;
|
||||
std::thread::id id2 = std::this_thread::get_id();
|
||||
typedef std::hash<std::thread::id> H;
|
||||
#if TEST_STD_VER <= 14
|
||||
static_assert((std::is_same<typename H::argument_type, std::thread::id>::value), "" );
|
||||
static_assert((std::is_same<typename H::result_type, std::size_t>::value), "" );
|
||||
#endif
|
||||
ASSERT_NOEXCEPT(H()(id2));
|
||||
H h;
|
||||
assert(h(id1) != h(id2));
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user