[testsuite] gcc.dg/memcmp-1.c: Fix testcase for newlib.
authorChristophe Lyon <christophe.lyon@linaro.org>
Tue, 31 Jan 2017 14:03:56 +0000 (14:03 +0000)
committerChristophe Lyon <clyon@gcc.gnu.org>
Tue, 31 Jan 2017 14:03:56 +0000 (15:03 +0100)
2017-01-31  Christophe Lyon  <christophe.lyon@linaro.org>

* gcc.dg/memcmp-1.c (static void test_driver_memcmp): Call
rand() instead of random().

From-SVN: r245061

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/memcmp-1.c

index fef5e87b9afd6d2eee0fb132158b14cf887ab4ba..76835d4ce5370ea03844bca82225693bb615cef4 100644 (file)
@@ -1,3 +1,8 @@
+2017-01-31  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       * gcc.dg/memcmp-1.c (static void test_driver_memcmp): Call
+       rand() instead of random().
+
 2017-01-30  Aldy Hernandez  <aldyh@redhat.com>
 
        PR tree-optimization/71691
index b4fd780fdd0d6cde5d0aad3b7ed7a97ee4349388..828a0caf1350ed5b5b02154035b2d23151560f11 100644 (file)
@@ -28,12 +28,12 @@ static void test_driver_memcmp (void (test_memcmp)(const char *, const char *, i
   for(l=0;l<sz;l++) {
     for(i=0;i<NRAND/sz;i++) {
       for(j=0;j<l;j++) {
-       buf1[j] = random() & 0xff;
+       buf1[j] = rand() & 0xff;
        buf2[j] = buf1[j];
       }
       for(j=l;j<sz;j++) {
-       buf1[j] = random() & 0xff;
-       buf2[j] = random() & 0xff;
+       buf1[j] = rand() & 0xff;
+       buf2[j] = rand() & 0xff;
       }
     }
     e = lib_memcmp(buf1,buf2,sz);