aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signal_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-12 19:04:27 -0800
committerElliott Hughes <enh@google.com>2014-02-12 19:04:27 -0800
commit671e236d5fd2cae169c2a31d0a35e66c4fcc5556 (patch)
tree55c1a2a77c279f671d77e23ff1ee89946fd6efde /tests/signal_test.cpp
parentfc48e8cf28b80ce0f95e288eeee459b4cb932afa (diff)
downloadandroid_bionic-671e236d5fd2cae169c2a31d0a35e66c4fcc5556.tar.gz
android_bionic-671e236d5fd2cae169c2a31d0a35e66c4fcc5556.tar.bz2
android_bionic-671e236d5fd2cae169c2a31d0a35e66c4fcc5556.zip
Restore sys_signame for LP64.
mksh is using this, and we probably build as much BSD source as glibc source. Change-Id: I400d255a67f9614ca9e57090e3a2e49d2b10cba4
Diffstat (limited to 'tests/signal_test.cpp')
-rw-r--r--tests/signal_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/signal_test.cpp b/tests/signal_test.cpp
index ea3096a5d..6d55bef24 100644
--- a/tests/signal_test.cpp
+++ b/tests/signal_test.cpp
@@ -240,7 +240,7 @@ TEST(signal, sigaction) {
}
TEST(signal, sys_signame) {
-#if defined(__BIONIC__) && !defined(__LP64__)
+#if defined(__BIONIC__)
ASSERT_TRUE(sys_signame[0] == NULL);
ASSERT_STREQ("HUP", sys_signame[SIGHUP]);
#else