mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 12:46:09 +00:00

Turn off execution of tests that use UNIX-specific features. Reviewed By: Amir Differential Revision: https://reviews.llvm.org/D126933
11 lines
367 B
Plaintext
11 lines
367 B
Plaintext
# Check that llvm-bolt detects bad profile data and aborts
|
|
|
|
# This test uses the clang driver without target flags and will only succeed
|
|
# on Linux systems where the host triple matches the target.
|
|
REQUIRES: system-linux
|
|
|
|
RUN: %clang %S/Inputs/icf-jump-tables.c -o %t
|
|
RUN: not llvm-bolt %t -o %t.bolt --data %t 2>&1 | FileCheck %s
|
|
|
|
CHECK: no valid profile data found
|