blob: e01220e1b76f1721c345ceb39cdac4fffae7d210 [file] [log] [blame]
Dmitriy Ivanov6b566912014-04-29 08:41:29 -07001/*
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 */
16
17#include <gtest/gtest.h>
18
19#include <dlfcn.h>
20#include <libgen.h>
21#include <limits.h>
22#include <stdio.h>
23#include <stdint.h>
24
25#include <string>
26
Dmitriy Ivanov6396da92014-05-05 19:52:13 -070027TEST(atexit, dlclose) {
Dmitriy Ivanov6b566912014-04-29 08:41:29 -070028 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);
32
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);
36
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}
42
Dmitriy Ivanov6396da92014-05-05 19:52:13 -070043class TestMainStaticDtorClass {
44 public:
45 TestMainStaticDtorClass() {
46 expected_this = this;
47 }
48
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};
59
60const TestMainStaticDtorClass* TestMainStaticDtorClass::expected_this = NULL;
61
62static void atexit_func5() {
63 fprintf(stderr, "5");
64}
65
66static void atexit_func4() {
67 fprintf(stderr, "4");
68}
69
70static void atexit_func3() {
71 fprintf(stderr, "3");
72 atexit(atexit_func4);
73}
74
75static void atexit_func2() {
76 fprintf(stderr, "2");
77}
78
79static void atexit_func1() {
80 fprintf(stderr, "1");
81}
82
83static 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}
92
93TEST(atexit, exit) {
94 ASSERT_EXIT(atexit_main(), testing::ExitedWithCode(0), "123456");
95}
Dmitriy Ivanov6b566912014-04-29 08:41:29 -070096