From f04935c85e0b466f0d30d2cd4c0fa2fff62e7d6d Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Fri, 20 Dec 2013 18:43:21 -0800 Subject: Make sure that the same tests are on all platforms. In order to be able to generate a list of tests for cts, the same set of tests must exist across all platforms. This CL adds empty tests where a test was conditionally compiled out. This CL creates a single library libBionicTests that includes all of the tests found in bionic-unit-tests-static. Also fix a few missing include files in some test files. Tested by running and compiling the tests for every platform and verifying the same number of tests are on each platform. Change-Id: I9989d4bfebb0f9c409a0ce7e87169299eac605a2 --- tests/inttypes_test.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/inttypes_test.cpp') diff --git a/tests/inttypes_test.cpp b/tests/inttypes_test.cpp index df02d1fc1..ac37e6295 100644 --- a/tests/inttypes_test.cpp +++ b/tests/inttypes_test.cpp @@ -19,7 +19,6 @@ #include #include -#if defined(__BIONIC__) // Doesn't work on glibc because we use -m32. TEST(inttypes, misc) { char buf[512]; @@ -39,4 +38,3 @@ TEST(inttypes, misc) { sscanf(buf, "%08" SCNuPTR, &u); sscanf(buf, "%08" SCNxPTR, &u); } -#endif -- cgit v1.2.3