aboutsummaryrefslogtreecommitdiffstats
path: root/tests/stdlib_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib_test.cpp')
-rw-r--r--tests/stdlib_test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/stdlib_test.cpp b/tests/stdlib_test.cpp
index 7c86d76ba..6d29421d0 100644
--- a/tests/stdlib_test.cpp
+++ b/tests/stdlib_test.cpp
@@ -53,17 +53,10 @@ TEST(stdlib, random) {
TEST(stdlib, rand) {
srand(0x01020304);
-#if defined(__BIONIC__)
- EXPECT_EQ(1675538669, rand());
- EXPECT_EQ(1678228258, rand());
- EXPECT_EQ(1352350131, rand());
- EXPECT_EQ(824068976, rand());
-#else
EXPECT_EQ(55436735, rand());
EXPECT_EQ(1399865117, rand());
EXPECT_EQ(2032643283, rand());
EXPECT_EQ(571329216, rand());
-#endif
}
TEST(stdlib, mrand48) {