llvm-project/openmp/runtime/test/api/omp_get_num_devices.c
Joachim Protze 047890bc3f [OpenMP][Tests][NFC] Mark tests trying to link COI as unsupported
For some tests with target-related functionality icc 18/19 tries to link
libioffload_target.so.5, which fails for missing COI symbols.
2021-10-25 18:20:12 +02:00

28 lines
450 B
C

// RUN: %libomp-compile-and-run
// Linking fails for icc 18
// UNSUPPORTED: icc-18
#include <stdio.h>
#include "omp_testsuite.h"
int test_omp_get_num_devices()
{
/* checks that omp_get_device_num */
int num_devices = omp_get_num_devices();
return (num_devices == 0);
}
int main()
{
int i;
int num_failed=0;
for(i = 0; i < REPETITIONS; i++) {
if(!test_omp_get_num_devices()) {
num_failed++;
}
}
return num_failed;
}