1 /*- 2 * Copyright (c) 2016 Mahdi Mokhtari <mokhi64@gmail.com> 3 * Copyright (c) 2016 The FreeBSD Foundation 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 #include <sys/cdefs.h> 29 #include <dlfcn.h> 30 #include <atf-c++.hpp> 31 #include <cstdio> 32 #include <cstdlib> 33 34 static FILE *output = NULL; 35 36 struct Foo { 37 Foo() { ATF_REQUIRE(fprintf(output, "Created\n") > 0); } 38 ~Foo() { ATF_REQUIRE(fprintf(output, "Destroyed\n") > 0); } 39 void use() { ATF_REQUIRE(fprintf(output, "Used\n") > 0); } 40 }; 41 42 static thread_local Foo f; 43 44 /* 45 * This test must not be linked to libpthread. 46 */ 47 ATF_TEST_CASE_WITHOUT_HEAD(cxx__nothr); 48 ATF_TEST_CASE_BODY(cxx__nothr) 49 { 50 void *libthr_handle; 51 52 /* Avoid coredump during f construction. */ 53 output = stderr; 54 55 libthr_handle = dlopen("libthr.so.3", RTLD_LAZY | RTLD_GLOBAL | 56 RTLD_NOLOAD); 57 ATF_REQUIRE(libthr_handle == NULL); 58 } 59 60 static void 61 check_local_main(void) 62 { 63 static const char out_log[] = "Created\nUsed\nDestroyed\n"; 64 65 fflush(output); 66 ATF_REQUIRE(atf::utils::compare_file("test_main.txt", out_log)); 67 } 68 69 ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_local_main); 70 ATF_TEST_CASE_BODY(cxx__thread_local_main) 71 { 72 73 ATF_REQUIRE((output = fopen("test_main.txt", "w")) != NULL); 74 f.use(); 75 atexit(check_local_main); 76 } 77 78 extern "C" int __cxa_thread_atexit(void (*)(void *), void *, void *); 79 80 static void 81 again(void *arg) 82 { 83 84 __cxa_thread_atexit(again, arg, &output); 85 } 86 87 ATF_TEST_CASE_WITHOUT_HEAD(cxx__thread_inf_dtors); 88 ATF_TEST_CASE_BODY(cxx__thread_inf_dtors) 89 { 90 91 again(NULL); 92 } 93 94 ATF_INIT_TEST_CASES(tcs) 95 { 96 97 ATF_ADD_TEST_CASE(tcs, cxx__nothr); 98 ATF_ADD_TEST_CASE(tcs, cxx__thread_local_main); 99 ATF_ADD_TEST_CASE(tcs, cxx__thread_inf_dtors); 100 } 101