#include <dlfcn.h>
#include <atf-c++.hpp>
#include <cstdio>
#include <cstdlib>
#include <thread>
#define AGAIN_CALL_LIMIT 20
static FILE *output = NULL;
static int again_counter = 0;
struct Foo {
Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); }
~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); }
void use() { ATF_REQUIRE(fprintf(output, "Used\n") > 0); }
};
struct Bar {
Bar() {}
~Bar() {
thread_local static Foo foo;
ATF_REQUIRE(fprintf(output, "DIED\n") > 0);
}
void use() {}
};
extern "C" int __cxa_thread_atexit(void (*)(void *), void *, void *);
static void
again(void *arg)
{
if (again_counter < AGAIN_CALL_LIMIT) {
++again_counter;
__cxa_thread_atexit(again, arg, &output);
}
}
struct Baz {
Baz() {}
~Baz() {
again(NULL);
}
void use() {}
};
static thread_local Foo f;
static thread_local Foo g;
static thread_local Bar h;
static thread_local Baz e;
ATF_TEST_CASE_WITHOUT_HEAD(cxx__thr);
ATF_TEST_CASE_BODY(cxx__thr)
{
void *libthr_handle;
output = stderr;
libthr_handle = dlopen("libthr.so.3", RTLD_LAZY | RTLD_GLOBAL |
RTLD_NOLOAD);
ATF_REQUIRE(libthr_handle != NULL);
dlclose(libthr_handle);
}
ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_local_before);
ATF_TEST_CASE_BODY(cxx__thread_local_before)
{
static const char out_log[] = "Created\nCreated\nUsed\nCreated\n"
"Created\nUsed\nCreated\nDIED\nDestroyed\nDestroyed\nDestroyed\n";
ATF_REQUIRE((output = fopen("test_before.txt", "w")) != NULL);
f.use();
std::thread t([]() { f.use(); });
t.join();
fflush(output);
ATF_REQUIRE(atf::utils::compare_file("test_before.txt", out_log));
}
ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_local_after);
ATF_TEST_CASE_BODY(cxx__thread_local_after)
{
static const char out_log[] = "Created\nCreated\nUsed\nCreated\n"
"DIED\nDestroyed\nDestroyed\nDestroyed\nCreated\nCreated\nUsed\n";
ATF_REQUIRE((output = fopen("test_after.txt", "w")) != NULL);
std::thread t([]() { g.use(); });
t.join();
sleep(1);
g.use();
fflush(output);
ATF_REQUIRE(atf::utils::compare_file("test_after.txt", out_log));
}
ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_local_add_while_calling_dtors);
ATF_TEST_CASE_BODY(cxx__thread_local_add_while_calling_dtors)
{
static const char out_log[] = "Created\nCreated\nCreated\nDIED\n"
"Destroyed\nDestroyed\nDestroyed\n";
ATF_REQUIRE((output = fopen("test_add_meanwhile.txt", "w")) != NULL);
std::thread t([]() { h.use(); });
t.join();
sleep(1);
fflush(output);
ATF_REQUIRE(atf::utils::compare_file("test_add_meanwhile.txt", out_log));
}
ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_inf_dtors);
ATF_TEST_CASE_BODY(cxx__thread_inf_dtors)
{
output = stderr;
std::thread t([]() { e.use(); });
t.join();
ATF_REQUIRE_EQ(again_counter, AGAIN_CALL_LIMIT);
}
ATF_INIT_TEST_CASES(tcs)
{
ATF_ADD_TEST_CASE(tcs, cxx__thr);
ATF_ADD_TEST_CASE(tcs, cxx__thread_local_before);
ATF_ADD_TEST_CASE(tcs, cxx__thread_local_after);
ATF_ADD_TEST_CASE(tcs, cxx__thread_local_add_while_calling_dtors);
ATF_ADD_TEST_CASE(tcs, cxx__thread_inf_dtors);
}