NFC processing time script identifies tests by output filename. When `/dev/null` is used as output filename, we're unable to tell the source test, and the reports are unhelpful. Replace `/dev/null/` with `%t.null` which resolves the issue.
7 lines
255 B
Plaintext
7 lines
255 B
Plaintext
# Verifies that BOLT detects fixed destination of indirect jump
|
|
|
|
RUN: %clang %cflags -no-pie %S/Inputs/jump_table_reference.s -Wl,-q -o %t
|
|
RUN: llvm-bolt %t --relocs -o %t.null 2>&1 | FileCheck %s
|
|
|
|
CHECK: BOLT-INFO: fixed indirect branch detected in main
|