Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 716185 Details for
Bug 927394
Self-test failure on PowerPC: test_murmur2: test-hash.c:173: expected <-2034170174> but was <-1660023750>
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix testing of murmur hash on bigendian systems
Fix-testing-of-murmur-hash-on-bigendian-systems.patch (text/plain), 2.70 KB, created by
Stef Walter
on 2013-03-25 20:17:27 UTC
(
hide
)
Description:
Fix testing of murmur hash on bigendian systems
Filename:
MIME Type:
Creator:
Stef Walter
Created:
2013-03-25 20:17:27 UTC
Size:
2.70 KB
patch
obsolete
>From b0e44f8e1e589726c95506da5121e95a54269fd7 Mon Sep 17 00:00:00 2001 >From: Stef Walter <stefw@gnome.org> >Date: Mon, 25 Mar 2013 21:16:28 +0100 >Subject: [PATCH] Fix testing of murmur hash on bigendian systems > >The murmur hash produces different output depending on the architecture > >https://bugzilla.redhat.com/show_bug.cgi?id=927394 >--- > common/tests/test-hash.c | 60 +++++++++++++++++++----------------------------- > 1 file changed, 23 insertions(+), 37 deletions(-) > >diff --git a/common/tests/test-hash.c b/common/tests/test-hash.c >index c8694e1..a1cb917 100644 >--- a/common/tests/test-hash.c >+++ b/common/tests/test-hash.c >@@ -135,44 +135,30 @@ test_md5 (CuTest *cu) > static void > test_murmur2 (CuTest *cu) > { >- struct { >- const char *input; >- const char *input2; >- int hash; >- } fixtures[] = { >- { "one", NULL, 1910179066 }, >- { "two", NULL, 396151652 }, >- { "four", NULL, -2034170174 }, >- { "seven", NULL, -588341181 }, >- /* Note that these are identical output */ >- { "eleven", NULL, -37856894 }, >- { "ele", "ven", -37856894 }, >- { NULL }, >- }; >- >- uint32_t first; >- uint32_t second; >- int i; >+ uint32_t one, two, four, seven, eleven, split; > >- assert (sizeof (first) == P11_HASH_MURMUR2_LEN); >- for (i = 0; fixtures[i].input != NULL; i++) { >- p11_hash_murmur2 ((unsigned char *)&first, >- fixtures[i].input, >- strlen (fixtures[i].input), >- fixtures[i].input2, >- fixtures[i].input2 ? strlen (fixtures[i].input2) : 0, >- NULL); >- >- p11_hash_murmur2 ((unsigned char *)&second, >- fixtures[i].input, >- strlen (fixtures[i].input), >- fixtures[i].input2, >- fixtures[i].input2 ? strlen (fixtures[i].input2) : 0, >- NULL); >- >- CuAssertIntEquals (cu, fixtures[i].hash, first); >- CuAssertIntEquals (cu, fixtures[i].hash, second); >- } >+ assert (sizeof (one) == P11_HASH_MURMUR2_LEN); >+ >+ p11_hash_murmur2 ((unsigned char *)&one, "one", 3, NULL); >+ p11_hash_murmur2 ((unsigned char *)&two, "two", 3, NULL); >+ p11_hash_murmur2 ((unsigned char *)&four, "four", 4, NULL); >+ p11_hash_murmur2 ((unsigned char *)&seven, "seven", 5, NULL); >+ p11_hash_murmur2 ((unsigned char *)&eleven, "eleven", 6, NULL); >+ p11_hash_murmur2 ((unsigned char *)&split, "ele", 3, "ven", 3, NULL); >+ >+ CuAssertTrue (cu, one != two); >+ CuAssertTrue (cu, one != four); >+ CuAssertTrue (cu, one != seven); >+ CuAssertTrue (cu, one != eleven); >+ >+ CuAssertTrue (cu, two != four); >+ CuAssertTrue (cu, two != seven); >+ CuAssertTrue (cu, two != eleven); >+ >+ CuAssertTrue (cu, four != seven); >+ CuAssertTrue (cu, four != eleven); >+ >+ CuAssertTrue (cu, split == eleven); > } > > static void >-- >1.8.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 927394
: 716185