mirror of
https://src.fedoraproject.org/rpms/libomp.git
synced 2024-11-25 00:15:16 +00:00
9 lines
172 B
Bash
9 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 || $?
|