]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/platform-bionic.git/blob - tests/atexit_test.cpp
libc: Add AF_RPMSG and PF_RPMSG
[android-sdk/platform-bionic.git] / tests / atexit_test.cpp
1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
17 #include <gtest/gtest.h>
19 #include <dlfcn.h>
20 #include <libgen.h>
21 #include <limits.h>
22 #include <stdio.h>
23 #include <stdint.h>
25 #include <string>
27 TEST(atexit, dlclose) {
28   std::string atexit_call_sequence;
29   bool valid_this_in_static_dtor = false;
30   void* handle = dlopen("libtest_atexit.so", RTLD_NOW);
31   ASSERT_TRUE(handle != NULL);
33   void* sym = dlsym(handle, "register_atexit");
34   ASSERT_TRUE(sym != NULL);
35   reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_dtor);
37   ASSERT_EQ(0, dlclose(handle));
38   // this test verifies atexit call from atexit handler. as well as the order of calls
39   ASSERT_EQ("Humpty Dumpty sat on a wall", atexit_call_sequence);
40   ASSERT_TRUE(valid_this_in_static_dtor);
41 }
43 class TestMainStaticDtorClass {
44  public:
45   TestMainStaticDtorClass() {
46     expected_this = this;
47   }
49   ~TestMainStaticDtorClass() {
50     if (this != expected_this) {
51       fprintf(stderr, "\nerror: static d-tor called with incorrect this pointer: %p, expected: %p\n", this, expected_this);
52     } else {
53       fprintf(stderr, "6");
54     }
55   }
56  private:
57   static const TestMainStaticDtorClass* expected_this;
58 };
60 const TestMainStaticDtorClass* TestMainStaticDtorClass::expected_this = NULL;
62 static void atexit_func5() {
63   fprintf(stderr, "5");
64 }
66 static void atexit_func4() {
67   fprintf(stderr, "4");
68 }
70 static void atexit_func3() {
71   fprintf(stderr, "3");
72   atexit(atexit_func4);
73 }
75 static void atexit_func2() {
76   fprintf(stderr, "2");
77 }
79 static void atexit_func1() {
80   fprintf(stderr, "1");
81 }
83 static void atexit_main() {
84   // This should result in "123456" output to stderr
85   static TestMainStaticDtorClass static_obj;
86   atexit(atexit_func5);
87   atexit(atexit_func3);
88   atexit(atexit_func2);
89   atexit(atexit_func1);
90   exit(0);
91 }
93 TEST(atexit, exit) {
94   ASSERT_EXIT(atexit_main(), testing::ExitedWithCode(0), "123456");
95 }