Sign in
rust
/
rust-lang
/
llvm-project
/
refs/heads/rustc/14.0-2022-06-20
/
.
/
openmp
/
runtime
/
test
/
affinity
/
omp-places-invalid-syntax.c
blob: 31a318563233e3aab6c2795cf2ef2c9c0452b873 [
file
] [
log
] [
blame
] [
edit
]
// RUN: %libomp-compile && env KMP_SETTINGS=1 OMP_PLACES=invalid %libomp-run 2>&1 | FileCheck %s
// CHECK-DAG: Effective settings
// CHECK: OMP_PLACES=
// CHECK-SAME: cores
// REQUIRES: affinity
int
main
()
{
#pragma
omp parallel
{}
return
0
;
}