summaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authorguilhem@gbichot3.local <>2006-12-04 15:57:56 +0100
committerguilhem@gbichot3.local <>2006-12-04 15:57:56 +0100
commit8f59d9917a3de76f0aef89d71c8b33c5f8846b35 (patch)
tree3bce3d5d8bd103252ba09c47700044a5d60b472b /unittest
parentc610c271fae132eebfd007a95a224dcd31b8584a (diff)
downloadmariadb-git-8f59d9917a3de76f0aef89d71c8b33c5f8846b35.tar.gz
Work around slow my_atomic-t test on hpux11: decrease number of
iterations on this platform
Diffstat (limited to 'unittest')
-rw-r--r--unittest/mysys/my_atomic-t.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/unittest/mysys/my_atomic-t.c b/unittest/mysys/my_atomic-t.c
index fe93b0942ce..25f00f3ff87 100644
--- a/unittest/mysys/my_atomic-t.c
+++ b/unittest/mysys/my_atomic-t.c
@@ -174,9 +174,15 @@ int main()
pthread_cond_init(&cond, 0);
my_atomic_rwlock_init(&rwl);
- test_atomic("my_atomic_add32", test_atomic_add_handler, 100,10000);
- test_atomic("my_atomic_swap32", test_atomic_swap_handler, 100,10000);
- test_atomic("my_atomic_cas32", test_atomic_cas_handler, 100,10000);
+#ifdef HPUX11
+#define CYCLES 1000
+#else
+#define CYCLES 10000
+#endif
+#define THREADS 100
+ test_atomic("my_atomic_add32", test_atomic_add_handler, THREADS, CYCLES);
+ test_atomic("my_atomic_swap32", test_atomic_swap_handler, THREADS, CYCLES);
+ test_atomic("my_atomic_cas32", test_atomic_cas_handler, THREADS, CYCLES);
/*
workaround until we know why it crashes randomly on some machine