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.
This commit is contained in:
parent
61aa380bad
commit
90efaebf95
2 changed files with 12 additions and 28 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue