Move libraries for unit-tests to separate folder
Change-Id: I1653f3f2fd63ba25525369bc725c8f7438ecf021
This commit is contained in:
105
tests/libs/Android.mk
Normal file
105
tests/libs/Android.mk
Normal file
@@ -0,0 +1,105 @@
|
||||
#
|
||||
# Copyright (C) 2012 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
TEST_PATH := $(LOCAL_PATH)/..
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library used by dlfcn tests.
|
||||
# -----------------------------------------------------------------------------
|
||||
ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
|
||||
no-elf-hash-table-library_src_files := \
|
||||
empty.cpp \
|
||||
|
||||
no-elf-hash-table-library_ldflags := \
|
||||
-Wl,--hash-style=gnu \
|
||||
|
||||
module := no-elf-hash-table-library
|
||||
module_tag := optional
|
||||
build_type := target
|
||||
build_target := SHARED_LIBRARY
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
endif
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library used by dlext tests - with GNU RELRO program header
|
||||
# -----------------------------------------------------------------------------
|
||||
libdlext_test_src_files := \
|
||||
dlext_test_library.cpp \
|
||||
|
||||
libdlext_test_ldflags := \
|
||||
-Wl,-z,relro \
|
||||
|
||||
module := libdlext_test
|
||||
module_tag := optional
|
||||
build_type := target
|
||||
build_target := SHARED_LIBRARY
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# create symlink to libdlext_test.so for symlink test
|
||||
# -----------------------------------------------------------------------------
|
||||
# Use = instead of := to defer the evaluation of $@
|
||||
$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD = \
|
||||
$(hide) cd $(dir $@) && ln -sf $(notdir $@) libdlext_test_v2.so
|
||||
|
||||
ifneq ($(TARGET_2ND_ARCH),)
|
||||
# link 64 bit .so
|
||||
$(TARGET_OUT)/lib64/libdlext_test.so: PRIVATE_POST_INSTALL_CMD = \
|
||||
$(hide) cd $(dir $@) && ln -sf $(notdir $@) libdlext_test_v2.so
|
||||
endif
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library used by dlext tests - without GNU RELRO program header
|
||||
# -----------------------------------------------------------------------------
|
||||
libdlext_test_norelro_src_files := \
|
||||
dlext_test_library.cpp \
|
||||
|
||||
libdlext_test_norelro_ldflags := \
|
||||
-Wl,-z,norelro \
|
||||
|
||||
module := libdlext_test_norelro
|
||||
module_tag := optional
|
||||
build_type := target
|
||||
build_target := SHARED_LIBRARY
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library used by dlfcn tests
|
||||
# -----------------------------------------------------------------------------
|
||||
libtest_simple_src_files := \
|
||||
dlopen_testlib_simple.cpp
|
||||
|
||||
module := libtest_simple
|
||||
build_type := target
|
||||
build_target := SHARED_LIBRARY
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library used by atexit tests
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
libtest_atexit_src_files := \
|
||||
atexit_testlib.cpp
|
||||
|
||||
module := libtest_atexit
|
||||
build_target := SHARED_LIBRARY
|
||||
build_type := target
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
build_type := host
|
||||
include $(TEST_PATH)/Android.build.mk
|
||||
|
||||
75
tests/libs/atexit_testlib.cpp
Normal file
75
tests/libs/atexit_testlib.cpp
Normal file
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <string>
|
||||
|
||||
// use external control number from main test
|
||||
static std::string* atexit_sequence = NULL;
|
||||
static bool* atexit_valid_this_in_static_dtor = NULL;
|
||||
|
||||
static class AtExitStaticClass {
|
||||
public:
|
||||
AtExitStaticClass() { expected_this = this; }
|
||||
~AtExitStaticClass() {
|
||||
if (atexit_valid_this_in_static_dtor) {
|
||||
*atexit_valid_this_in_static_dtor = (expected_this == this);
|
||||
}
|
||||
}
|
||||
private:
|
||||
static const AtExitStaticClass* expected_this;
|
||||
|
||||
} static_obj;
|
||||
|
||||
const AtExitStaticClass* AtExitStaticClass::expected_this = NULL;
|
||||
|
||||
// 4
|
||||
static void atexit_handler_from_atexit_from_atexit2() {
|
||||
*atexit_sequence += " on";
|
||||
}
|
||||
|
||||
// 3
|
||||
static void atexit_handler_from_atexit_from_atexit1() {
|
||||
*atexit_sequence += " sat";
|
||||
}
|
||||
|
||||
// 2
|
||||
static void atexit_handler_from_atexit() {
|
||||
*atexit_sequence += " Dumpty";
|
||||
// register 2 others
|
||||
atexit(atexit_handler_from_atexit_from_atexit2);
|
||||
atexit(atexit_handler_from_atexit_from_atexit1);
|
||||
}
|
||||
|
||||
// 1
|
||||
static void atexit_handler_with_atexit() {
|
||||
*atexit_sequence += "Humpty";
|
||||
atexit(atexit_handler_from_atexit);
|
||||
}
|
||||
|
||||
// last
|
||||
static void atexit_handler_regular() {
|
||||
*atexit_sequence += " a wall";
|
||||
}
|
||||
|
||||
extern "C" void register_atexit(std::string* sequence, bool* valid_this_in_static_dtor) {
|
||||
atexit_sequence = sequence;
|
||||
atexit_valid_this_in_static_dtor = valid_this_in_static_dtor;
|
||||
atexit(atexit_handler_regular);
|
||||
atexit(atexit_handler_with_atexit);
|
||||
}
|
||||
|
||||
43
tests/libs/dlext_test_library.cpp
Normal file
43
tests/libs/dlext_test_library.cpp
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
class A {
|
||||
public:
|
||||
virtual int getRandomNumber() {
|
||||
return 4; // chosen by fair dice roll.
|
||||
// guaranteed to be random.
|
||||
}
|
||||
|
||||
virtual ~A() {}
|
||||
};
|
||||
|
||||
A a;
|
||||
|
||||
// nested macros to make it easy to define a large amount of read-only data
|
||||
// which will require relocation.
|
||||
#define A_16 &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a, &a,
|
||||
#define A_128 A_16 A_16 A_16 A_16 A_16 A_16 A_16 A_16
|
||||
#define A_1024 A_128 A_128 A_128 A_128 A_128 A_128 A_128 A_128
|
||||
|
||||
extern "C" A* const lots_of_relro[] = {
|
||||
A_1024 A_1024 A_1024 A_1024 A_1024 A_1024 A_1024 A_1024
|
||||
};
|
||||
|
||||
extern "C" int getRandomNumber() {
|
||||
// access the relro section (twice, in fact, once for the pointer, and once
|
||||
// for the vtable of A) to check it's actually there.
|
||||
return lots_of_relro[0]->getRandomNumber();
|
||||
}
|
||||
23
tests/libs/dlopen_testlib_simple.cpp
Normal file
23
tests/libs/dlopen_testlib_simple.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (C) 2014 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
uint32_t dlopen_testlib_taxicab_number = 1729;
|
||||
|
||||
bool dlopen_testlib_simple_func() {
|
||||
return true;
|
||||
}
|
||||
0
tests/libs/empty.cpp
Normal file
0
tests/libs/empty.cpp
Normal file
Reference in New Issue
Block a user