mirror of
https://src.fedoraproject.org/rpms/libomp.git
synced 2024-11-28 17:16:42 +00:00
8 lines
172 B
Bash
8 lines
172 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
lit -v --config-prefix clang /usr/share/libomp/src/runtime/test
|
|
fail=$?
|
|
lit -v --config-prefix gcc /usr/share/libomp/src/runtime/test
|
|
exit $fail || $?
|