projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
08d5bf7
)
Disable murmur test on sparc hardware (platform specific hash algorith)
author
Trond Norbye
<tn202803@atum03>
Fri, 18 Dec 2009 10:07:29 +0000
(11:07 +0100)
committer
Trond Norbye
<tn202803@atum03>
Fri, 18 Dec 2009 10:07:29 +0000
(11:07 +0100)
tests/hashkit_functions.c
patch
|
blob
|
history
diff --git
a/tests/hashkit_functions.c
b/tests/hashkit_functions.c
index 1302011e76f48f14ad49f362bcf51c42f85bad09..fd6185a1a50461d726c4b8e96513d3f4a837534d 100644
(file)
--- 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)))