- 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
7 lines
266 B
Plaintext
7 lines
266 B
Plaintext
# Check that we do not reject position-independent executables (PIEs).
|
|
|
|
RUN: %clang %cflags -fPIC -pie %p/Inputs/jump_table_icp.cpp -o %t
|
|
RUN: llvm-bolt %t -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
CHECK: BOLT-INFO: shared object or position-independent executable detected
|