aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorAndrew Stubbs <ams@baylibre.com>2024-06-12 08:43:53 +0000
committerAndrew Stubbs <ams@baylibre.com>2024-07-01 10:53:57 +0000
commit90efaebf95c93244f6b1eda5cb8724e52047cecd (patch)
treec5f534b9d72416126d9bf0b309cca8c57fd8093f /libgomp
parent61aa380bad45fb070379f259f7abc5e5f50c9009 (diff)
downloadgcc-90efaebf95c93244f6b1eda5cb8724e52047cecd.zip
gcc-90efaebf95c93244f6b1eda5cb8724e52047cecd.tar.gz
gcc-90efaebf95c93244f6b1eda5cb8724e52047cecd.tar.bz2
libgomp: change alloc-pinned tests failure mode
The feature doesn't work on non-Linux hosts, at present, so skip the tests entirely. On Linux systems that have insufficient lockable memory configured we still need to fail or else the feature won't be getting tested when we think it is, but now there's a message to explain why. libgomp/ChangeLog: * testsuite/libgomp.c/alloc-pinned-1.c: Change dg-xfail-run-if to dg-skip-if. Correct spelling mistake. Abort on insufficient lockable memory. Use #error on non-linux hosts. * testsuite/libgomp.c/alloc-pinned-2.c: Likewise.
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/testsuite/libgomp.c/alloc-pinned-1.c20
-rw-r--r--libgomp/testsuite/libgomp.c/alloc-pinned-2.c20
2 files changed, 12 insertions, 28 deletions
diff --git a/libgomp/testsuite/libgomp.c/alloc-pinned-1.c b/libgomp/testsuite/libgomp.c/alloc-pinned-1.c
index 4185acc..672f245 100644
--- a/libgomp/testsuite/libgomp.c/alloc-pinned-1.c
+++ b/libgomp/testsuite/libgomp.c/alloc-pinned-1.c
@@ -1,6 +1,6 @@
/* { dg-do run } */
-/* { dg-xfail-run-if "Pinning not implemented on this host" { ! *-*-linux-gnu } } */
+/* { dg-skip-if "Pinning not implemented on this host" { ! *-*-linux-gnu* } } */
/* Test that pinned memory works. */
@@ -19,7 +19,10 @@
struct rlimit limit; \
if (getrlimit (RLIMIT_MEMLOCK, &limit) \
|| limit.rlim_cur <= SIZE) \
- fprintf (stderr, "unsufficient lockable memory; please increase ulimit\n"); \
+ { \
+ fprintf (stderr, "insufficient lockable memory; please increase ulimit\n"); \
+ abort (); \
+ } \
}
int
@@ -44,18 +47,7 @@ get_pinned_mem ()
abort ();
}
#else
-#define PAGE_SIZE 1024 /* unknown */
-#define CHECK_SIZE(SIZE) { \
- fprintf (stderr, "OS unsupported\n"); \
- abort (); \
- }
-#define EXPECT_OMP_NULL_ALLOCATOR
-
-int
-get_pinned_mem ()
-{
- return 0;
-}
+#error "OS unsupported"
#endif
static void
diff --git a/libgomp/testsuite/libgomp.c/alloc-pinned-2.c b/libgomp/testsuite/libgomp.c/alloc-pinned-2.c
index 0b9c11d..b6d1d83 100644
--- a/libgomp/testsuite/libgomp.c/alloc-pinned-2.c
+++ b/libgomp/testsuite/libgomp.c/alloc-pinned-2.c
@@ -1,6 +1,6 @@
/* { dg-do run } */
-/* { dg-xfail-run-if "Pinning not implemented on this host" { ! *-*-linux-gnu } } */
+/* { dg-skip-if "Pinning not implemented on this host" { ! *-*-linux-gnu* } } */
/* Test that pinned memory works (pool_size code path). */
@@ -19,7 +19,10 @@
struct rlimit limit; \
if (getrlimit (RLIMIT_MEMLOCK, &limit) \
|| limit.rlim_cur <= SIZE) \
- fprintf (stderr, "unsufficient lockable memory; please increase ulimit\n"); \
+ { \
+ fprintf (stderr, "insufficient lockable memory; please increase ulimit\n"); \
+ abort (); \
+ } \
}
int
@@ -44,18 +47,7 @@ get_pinned_mem ()
abort ();
}
#else
-#define PAGE_SIZE 1024 /* unknown */
-#define CHECK_SIZE(SIZE) { \
- fprintf (stderr, "OS unsupported\n"); \
- abort (); \
- }
-#define EXPECT_OMP_NULL_ALLOCATOR
-
-int
-get_pinned_mem ()
-{
- return 0;
-}
+#error "OS unsupported"
#endif
static void