[PATCH] D144593: fix check-bolt tests on arm64
Sebastian Pop via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 22 14:10:56 PST 2023
sebpop created this revision.
sebpop added reviewers: ayermolo, yota9.
Herald added subscribers: pengfei, kristof.beyls.
Herald added a reviewer: rafauler.
Herald added a reviewer: Amir.
Herald added a reviewer: maksfb.
Herald added a project: All.
sebpop requested review of this revision.
Herald added a project: LLVM.
The two tests were failing on arm64-linux with:
BOLT-ERROR: invalid target 'x86-64'.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D144593
Files:
bolt/test/pseudoprobe-decoding-inline.test
bolt/test/pseudoprobe-decoding-noinline.test
Index: bolt/test/pseudoprobe-decoding-noinline.test
===================================================================
--- bolt/test/pseudoprobe-decoding-noinline.test
+++ bolt/test/pseudoprobe-decoding-noinline.test
@@ -1,4 +1,4 @@
-# REQUIRES: system-linux
+# REQUIRES: x86_64-linux
# RUN: llvm-bolt %S/../../llvm/test/tools/llvm-profgen/Inputs/noinline-cs-pseudoprobe.perfbin --print-pseudo-probes=all -o %t.bolt 2>&1 | FileCheck %s
;; Report of decoding input pseudo probe binaries
Index: bolt/test/pseudoprobe-decoding-inline.test
===================================================================
--- bolt/test/pseudoprobe-decoding-inline.test
+++ bolt/test/pseudoprobe-decoding-inline.test
@@ -1,4 +1,4 @@
-# REQUIRES: system-linux
+# REQUIRES: x86_64-linux
# RUN: llvm-bolt %S/../../llvm/test/tools/llvm-profgen/Inputs/inline-cs-pseudoprobe.perfbin --print-pseudo-probes=all -o %t.bolt 2>&1 | FileCheck %s
CHECK: Report of decoding input pseudo probe binaries
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144593.499648.patch
Type: text/x-patch
Size: 980 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230222/61ef91ac/attachment.bin>
More information about the llvm-commits
mailing list