mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-30 08:18:30 +00:00
third_party/libcxxabi: Add test suite (#1076)
Added the `libcxxabi` test suite as found in LLVM 17.0.6. Some tests that do not apply to the current configuration of comsopolitan are not added. These include: - `backtrace_test`, `forced_unwind*`: Use unwind function unsupported in SjLj mode. - `noexception*`: Designed to test `libcxxabi` in no exceptions mode. Some tests are added but not enabled due to bugs specific to GCC or cosmopolitan. These are clearly indicated in the `BUILD.mk` file.
This commit is contained in:
parent
8fb24a8f88
commit
b0566348b2
65 changed files with 43262 additions and 2 deletions
151
third_party/libcxxabi/test/test_guard.pass.cc
vendored
Normal file
151
third_party/libcxxabi/test/test_guard.pass.cc
vendored
Normal file
|
@ -0,0 +1,151 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "third_party/libcxx/cassert"
|
||||
#include "third_party/libcxxabi/include/cxxabi.h"
|
||||
|
||||
#include "third_party/libcxxabi/libcxx/test/support/test_macros.hh"
|
||||
|
||||
#ifndef TEST_HAS_NO_THREADS
|
||||
# include "third_party/libcxx/thread"
|
||||
# include "third_party/libcxxabi/libcxx/test/support/make_test_thread.hh"
|
||||
#endif
|
||||
|
||||
// Ensure that we initialize each variable once and only once.
|
||||
namespace test1 {
|
||||
static int run_count = 0;
|
||||
int increment() {
|
||||
++run_count;
|
||||
return 0;
|
||||
}
|
||||
void helper() {
|
||||
static int a = increment();
|
||||
((void)a);
|
||||
}
|
||||
void test() {
|
||||
static int a = increment(); ((void)a);
|
||||
assert(run_count == 1);
|
||||
static int b = increment(); ((void)b);
|
||||
assert(run_count == 2);
|
||||
helper();
|
||||
assert(run_count == 3);
|
||||
helper();
|
||||
assert(run_count == 3);
|
||||
}
|
||||
}
|
||||
|
||||
// When initialization fails, ensure that we try to initialize it again next
|
||||
// time.
|
||||
namespace test2 {
|
||||
#ifndef TEST_HAS_NO_EXCEPTIONS
|
||||
static int run_count = 0;
|
||||
int increment() {
|
||||
++run_count;
|
||||
throw 0;
|
||||
}
|
||||
void helper() {
|
||||
try {
|
||||
static int a = increment();
|
||||
assert(false);
|
||||
((void)a);
|
||||
} catch (...) {}
|
||||
}
|
||||
void test() {
|
||||
helper();
|
||||
assert(run_count == 1);
|
||||
helper();
|
||||
assert(run_count == 2);
|
||||
}
|
||||
#else
|
||||
void test() {}
|
||||
#endif
|
||||
}
|
||||
|
||||
// Check that we can initialize a second value while initializing a first.
|
||||
namespace test3 {
|
||||
int zero() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int one() {
|
||||
static int b = zero(); ((void)b);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void test() {
|
||||
static int a = one(); ((void)a);
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef TEST_HAS_NO_THREADS
|
||||
// A simple thread test of two threads racing to initialize a variable. This
|
||||
// isn't guaranteed to catch any particular threading problems.
|
||||
namespace test4 {
|
||||
static int run_count = 0;
|
||||
int increment() {
|
||||
++run_count;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void helper() {
|
||||
static int a = increment(); ((void)a);
|
||||
}
|
||||
|
||||
void test() {
|
||||
std::thread t1 = support::make_test_thread(helper);
|
||||
std::thread t2 = support::make_test_thread(helper);
|
||||
t1.join();
|
||||
t2.join();
|
||||
assert(run_count == 1);
|
||||
}
|
||||
}
|
||||
|
||||
// Check that we don't re-initialize a static variable even when it's
|
||||
// encountered from two different threads.
|
||||
namespace test5 {
|
||||
static int run_count = 0;
|
||||
int zero() {
|
||||
++run_count;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int one() {
|
||||
static int b = zero(); ((void)b);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void another_helper() {
|
||||
static int a = one(); ((void)a);
|
||||
}
|
||||
|
||||
void helper() {
|
||||
static int a = one(); ((void)a);
|
||||
std::thread t = support::make_test_thread(another_helper);
|
||||
t.join();
|
||||
}
|
||||
|
||||
void test() {
|
||||
std::thread t = support::make_test_thread(helper);
|
||||
t.join();
|
||||
assert(run_count == 1);
|
||||
}
|
||||
}
|
||||
#endif /* TEST_HAS_NO_THREADS */
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
test1::test();
|
||||
test2::test();
|
||||
test3::test();
|
||||
#ifndef TEST_HAS_NO_THREADS
|
||||
test4::test();
|
||||
test5::test();
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue