am 1672b056: Merge "Fix unwinding_through_signal_frame test."

* commit '1672b0563693eaaf92db4f304308d456a6102e64':
  Fix unwinding_through_signal_frame test.
This commit is contained in:
Christopher Ferris 2014-05-30 03:55:51 +00:00 committed by Android Git Automerger
commit 69371ef1cc

View File

@ -86,7 +86,6 @@ libBionicStandardTests_src_files := \
signal_test.cpp \ signal_test.cpp \
stack_protector_test.cpp \ stack_protector_test.cpp \
stack_unwinding_test.cpp \ stack_unwinding_test.cpp \
stack_unwinding_test_impl.c \
stdatomic_test.cpp \ stdatomic_test.cpp \
stdint_test.cpp \ stdint_test.cpp \
stdio_test.cpp \ stdio_test.cpp \
@ -121,6 +120,9 @@ libBionicStandardTests_cppflags := \
libBionicStandardTests_ldlibs_host := \ libBionicStandardTests_ldlibs_host := \
-lrt \ -lrt \
libBionicStandardTests_whole_static_libraries := \
libBionicUnwindTest \
module := libBionicStandardTests module := libBionicStandardTests
module_tag := optional module_tag := optional
build_type := target build_type := target
@ -129,6 +131,25 @@ include $(LOCAL_PATH)/Android.build.mk
build_type := host build_type := host
include $(LOCAL_PATH)/Android.build.mk include $(LOCAL_PATH)/Android.build.mk
# -----------------------------------------------------------------------------
# Special stack unwinding test library compiled with special flags.
# -----------------------------------------------------------------------------
libBionicUnwindTest_cflags := \
$(test_cflags) \
-fexceptions \
-fnon-call-exceptions \
libBionicUnwindTest_src_files := \
stack_unwinding_test_impl.c \
module := libBionicUnwindTest
module_tag := optional
build_type := target
build_target := STATIC_TEST_LIBRARY
include $(LOCAL_PATH)/Android.build.mk
build_type := host
include $(LOCAL_PATH)/Android.build.mk
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Fortify tests. # Fortify tests.
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------