Use abort in parloops-exit-first-loop-alt-{3,4}.c
authorTom de Vries <tom@codesourcery.com>
Tue, 23 Jun 2015 15:02:25 +0000 (15:02 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Tue, 23 Jun 2015 15:02:25 +0000 (15:02 +0000)
2015-06-23  Tom de Vries  <tom@codesourcery.com>

* testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c (main): Use
abort.
* testsuite/libgomp.c/parloops-exit-first-loop-alt-4.c (main): Same.

From-SVN: r224849

libgomp/ChangeLog
libgomp/testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c
libgomp/testsuite/libgomp.c/parloops-exit-first-loop-alt-4.c

index cf1a0b0d5a4a8ff3c53e92254dfc82e710caed52..34b3396be099b9d51c8ed15e177fc4cdc0c4749a 100644 (file)
@@ -1,3 +1,9 @@
+2015-06-23  Tom de Vries  <tom@codesourcery.com>
+
+       * testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c (main): Use
+       abort.
+       * testsuite/libgomp.c/parloops-exit-first-loop-alt-4.c (main): Same.
+
 2015-06-19  Thomas Schwinge  <thomas@codesourcery.com>
 
        * testsuite/libgomp.oacc-c-c++-common/lib-62.c: Only consider for
index 43b9194d2b1500ccf4f8b961002232f7bbaf402d..cb5bf9cb8c575d35a08e06213d73fb3f1a53f197 100644 (file)
@@ -3,6 +3,8 @@
 
 /* Variable bound, reduction.  */
 
+#include <stdlib.h>
+
 #define N 4000
 
 unsigned int *a;
@@ -25,9 +27,14 @@ main (void)
   unsigned int res;
   unsigned int array[N];
   int i;
+
   for (i = 0; i < N; ++i)
     array[i] = i % 7;
   a = &array[0];
+
   res = f (N);
-  return !(res == 11995);
+  if (res != 11995)
+    abort ();
+
+  return 0;
 }
index 8599a89a2f03c961e5018965662dbc5af6bb341a..ac420fa3662335d1cfa80061c91dbc0c542bab62 100644 (file)
@@ -3,6 +3,8 @@
 
 /* Constant bound, reduction.  */
 
+#include <stdlib.h>
+
 #define N 4000
 
 unsigned int *a;
@@ -29,5 +31,7 @@ main (void)
     array[i] = i % 7;
   a = &array[0];
   res = f ();
-  return !(res == 11995);
+  if (res != 11995)
+    abort ();
+  return 0;
 }