diff options
Diffstat (limited to 'tests/stdatomic_test.cpp')
-rw-r--r-- | tests/stdatomic_test.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/stdatomic_test.cpp b/tests/stdatomic_test.cpp index 9911d642e..8a6b267cc 100644 --- a/tests/stdatomic_test.cpp +++ b/tests/stdatomic_test.cpp @@ -69,12 +69,7 @@ TEST(stdatomic, atomic_is_lock_free) { atomic_char small; ASSERT_TRUE(atomic_is_lock_free(&small)); atomic_intmax_t big; - // atomic_intmax_t(size = 64) is not lock free on mips32. -#if defined(__mips__) && !defined(__LP64__) - ASSERT_FALSE(atomic_is_lock_free(&big)); -#else ASSERT_TRUE(atomic_is_lock_free(&big)); -#endif } TEST(stdatomic, atomic_flag) { |