079bd3253f
Resolves: rhbz#2061041 Resolves: rhbz#2061058
8 lines
107 B
Bash
Executable File
8 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -exo pipefail
|
|
|
|
clang -fopenmp openmp-compile-link-test.c
|
|
|
|
./a.out | grep "Num Threads: 1"
|