Index: crosstest/test_sync_atomic_main.cpp |
diff --git a/crosstest/test_sync_atomic_main.cpp b/crosstest/test_sync_atomic_main.cpp |
index 82b4472de580816009b6e8f2a91e382daa2f0c11..187783e0f0bae091766aaa3637d18f4ea60b8b85 100644 |
--- a/crosstest/test_sync_atomic_main.cpp |
+++ b/crosstest/test_sync_atomic_main.cpp |
@@ -160,14 +160,14 @@ template <typename Type> struct ThreadData { |
}; |
template <typename Type> void *threadWrapper(void *Data) { |
-#ifdef ARM32 |
+#if defined(ARM32) || defined(MIPS32) |
// Given that most of times these crosstests for ARM are run under qemu, we |
// set a lower NumReps to allow crosstests to complete within a reasonable |
// amount of time. |
static const size_t NumReps = 1000; |
-#else // ARM32 |
+#else // ARM32 || MIPS32 |
static const size_t NumReps = 8000; |
-#endif // ARM32 |
+#endif // ARM32 || MIPS32 |
ThreadData<Type> *TData = reinterpret_cast<ThreadData<Type> *>(Data); |
for (size_t i = 0; i < NumReps; ++i) { |