From 09c43dee2a16913d09a1232051978e3cd54ccb5a Mon Sep 17 00:00:00 2001 From: Trond Norbye Date: Fri, 18 Dec 2009 11:07:29 +0100 Subject: [PATCH] Disable murmur test on sparc hardware (platform specific hash algorith) --- tests/hashkit_functions.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/hashkit_functions.c b/tests/hashkit_functions.c index 1302011e..fd6185a1 100644 --- a/tests/hashkit_functions.c +++ b/tests/hashkit_functions.c @@ -249,6 +249,9 @@ static test_return_t hsieh_run (hashkit_st *hashk __attribute__((unused))) static test_return_t murmur_run (hashkit_st *hashk __attribute__((unused))) { +#ifdef __sparc + return TEST_SKIPPED; +#else uint32_t x; const char **ptr; @@ -261,6 +264,7 @@ static test_return_t murmur_run (hashkit_st *hashk __attribute__((unused))) } return TEST_SUCCESS; +#endif } static test_return_t jenkins_run (hashkit_st *hashk __attribute__((unused))) -- 2.30.2