summaryrefslogtreecommitdiff
path: root/tests/test-memcmp.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-12-21 05:42:11 +0100
committerBruno Haible <bruno@clisp.org>2019-12-21 05:42:11 +0100
commit80d13fd5bdb77eaa8059bae4504da46aba9c693c (patch)
tree808ce3b9afbdc1281474c103e73e57a8af2cf89c /tests/test-memcmp.c
parent3f7d8da2ee9e513a9db318dc9c4aa91ca6ed8b3b (diff)
downloadgnulib-80d13fd5bdb77eaa8059bae4504da46aba9c693c.tar.gz
memcmp tests: Work around the clang bug.
* tests/test-memcmp.c (main): Use a volatile function pointer to disable the clang optimization.
Diffstat (limited to 'tests/test-memcmp.c')
-rw-r--r--tests/test-memcmp.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/tests/test-memcmp.c b/tests/test-memcmp.c
index 5d481194ec..f0bddef702 100644
--- a/tests/test-memcmp.c
+++ b/tests/test-memcmp.c
@@ -25,12 +25,11 @@ SIGNATURE_CHECK (memcmp, int, (void const *, void const *, size_t));
#include "zerosize-ptr.h"
#include "macros.h"
-/* Note: This test sometimes fails when compiled by 'clang'.
- See <https://bugs.llvm.org/show_bug.cgi?id=40063>. */
-
int
main (void)
{
+ int (* volatile memcmp_ptr) (const void *, const void *, size_t) = memcmp;
+
/* Test equal / not equal distinction. */
ASSERT (memcmp (zerosize_ptr (), zerosize_ptr (), 0) == 0);
ASSERT (memcmp ("foo", "foobar", 2) == 0);
@@ -48,10 +47,13 @@ main (void)
ASSERT (memcmp ("foobar", "foo", 4) > 0);
/* Some old versions of memcmp were not 8-bit clean. */
- ASSERT (memcmp ("\100", "\201", 1) < 0);
- ASSERT (memcmp ("\201", "\100", 1) > 0);
- ASSERT (memcmp ("\200", "\201", 1) < 0);
- ASSERT (memcmp ("\201", "\200", 1) > 0);
+ /* Use the function pointer here, because otherwise this test is sometimes
+ miscompiled by 'clang'.
+ See <https://bugs.llvm.org/show_bug.cgi?id=40063>. */
+ ASSERT (memcmp_ptr ("\100", "\201", 1) < 0);
+ ASSERT (memcmp_ptr ("\201", "\100", 1) > 0);
+ ASSERT (memcmp_ptr ("\200", "\201", 1) < 0);
+ ASSERT (memcmp_ptr ("\201", "\200", 1) > 0);
/* The Next x86 OpenStep bug shows up only when comparing 16 bytes
or more and with at least one buffer not starting on a 4-byte boundary.