mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
20 lines
396 B
C
20 lines
396 B
C
|
/* Expect error message when shutting down a device that has never been
|
||
|
initialized. */
|
||
|
/* { dg-do run } */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <openacc.h>
|
||
|
|
||
|
int
|
||
|
main (int argc, char **argv)
|
||
|
{
|
||
|
fprintf (stderr, "CheCKpOInT\n");
|
||
|
acc_shutdown (acc_device_default);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
|
||
|
/* { dg-output "no device initialized" } */
|
||
|
/* { dg-shouldfail "" } */
|