mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 17:45:07 +08:00
- Fix common (arch-independent) tests to explicitly target -linux triple. - Override the triple inside arch-specific tests. - Add cflags to common tests. - Update individual tests. - Expand pipe stderr `|&` shorthand. Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D125548
6 lines
208 B
Plaintext
6 lines
208 B
Plaintext
# Test that llvm-bolt processes *.so without a failure
|
|
RUN: %clang %cflags %S/Inputs/icf-jump-tables.c -o %t.so -shared -fPIC -Wl,--build-id
|
|
RUN: llvm-bolt %t.so -o %t | FileCheck %s
|
|
|
|
CHECK: patched build-id
|