- 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
219 B
Plaintext
7 lines
219 B
Plaintext
# Check that llvm-bolt can rewrite static executable
|
|
|
|
RUN: %clang %cflags %S/Inputs/static_exe.s -static -o %t.exe -nostdlib
|
|
RUN: llvm-bolt %t.exe -o %t 2>&1 | FileCheck %s
|
|
|
|
CHECK: 1 out of 1 functions were overwritten
|