[llvm] 2936852 - [ARM][AArch64] Move TestInputs to Inputs (#164633)

via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 22 08:27:18 PDT 2025


Author: Walter Lee
Date: 2025-10-22T15:27:14Z
New Revision: 2936852d2f6b0e7af6237abe9796c494885b2aac

URL: https://github.com/llvm/llvm-project/commit/2936852d2f6b0e7af6237abe9796c494885b2aac
DIFF: https://github.com/llvm/llvm-project/commit/2936852d2f6b0e7af6237abe9796c494885b2aac.diff

LOG: [ARM][AArch64] Move TestInputs to Inputs (#164633)

It's standard in LLVM to have test inputs be in "Inputs". See
https://llvm.org/docs/TestingGuide.html#extra-files.

Fixes internal issue with #86212.

Added: 
    llvm/test/LTO/AArch64/Inputs/bar.ll
    llvm/test/LTO/AArch64/Inputs/fiz.ll
    llvm/test/LTO/AArch64/Inputs/foo.ll
    llvm/test/LTO/AArch64/Inputs/old.ll

Modified: 
    llvm/test/LTO/AArch64/link-branch-target-enforcement.ll
    llvm/test/LTO/AArch64/link-sign-return-address.ll

Removed: 
    llvm/test/LTO/AArch64/TestInputs/bar.ll
    llvm/test/LTO/AArch64/TestInputs/fiz.ll
    llvm/test/LTO/AArch64/TestInputs/foo.ll
    llvm/test/LTO/AArch64/TestInputs/old.ll


################################################################################
diff  --git a/llvm/test/LTO/AArch64/TestInputs/bar.ll b/llvm/test/LTO/AArch64/Inputs/bar.ll
similarity index 100%
rename from llvm/test/LTO/AArch64/TestInputs/bar.ll
rename to llvm/test/LTO/AArch64/Inputs/bar.ll

diff  --git a/llvm/test/LTO/AArch64/TestInputs/fiz.ll b/llvm/test/LTO/AArch64/Inputs/fiz.ll
similarity index 100%
rename from llvm/test/LTO/AArch64/TestInputs/fiz.ll
rename to llvm/test/LTO/AArch64/Inputs/fiz.ll

diff  --git a/llvm/test/LTO/AArch64/TestInputs/foo.ll b/llvm/test/LTO/AArch64/Inputs/foo.ll
similarity index 100%
rename from llvm/test/LTO/AArch64/TestInputs/foo.ll
rename to llvm/test/LTO/AArch64/Inputs/foo.ll

diff  --git a/llvm/test/LTO/AArch64/TestInputs/old.ll b/llvm/test/LTO/AArch64/Inputs/old.ll
similarity index 100%
rename from llvm/test/LTO/AArch64/TestInputs/old.ll
rename to llvm/test/LTO/AArch64/Inputs/old.ll

diff  --git a/llvm/test/LTO/AArch64/link-branch-target-enforcement.ll b/llvm/test/LTO/AArch64/link-branch-target-enforcement.ll
index aef8907c03411..20254de995f73 100644
--- a/llvm/test/LTO/AArch64/link-branch-target-enforcement.ll
+++ b/llvm/test/LTO/AArch64/link-branch-target-enforcement.ll
@@ -2,7 +2,7 @@
 ;; be mixed.
 ;;
 ; RUN: llvm-as %s -o %t1.bc
-; RUN: llvm-as %p/TestInputs/foo.ll -o %t2.bc
+; RUN: llvm-as %p/Inputs/foo.ll -o %t2.bc
 ; RUN: llvm-lto -exported-symbol main \
 ; RUN:          -exported-symbol foo_on \
 ; RUN:          -filetype=obj \

diff  --git a/llvm/test/LTO/AArch64/link-sign-return-address.ll b/llvm/test/LTO/AArch64/link-sign-return-address.ll
index df6276f32b6f1..331e481b69e43 100644
--- a/llvm/test/LTO/AArch64/link-sign-return-address.ll
+++ b/llvm/test/LTO/AArch64/link-sign-return-address.ll
@@ -2,10 +2,10 @@
 ;; be mixed.
 ;
 ; RUN: llvm-as %s -o %t1.bc
-; RUN: llvm-as %p/TestInputs/foo.ll -o %t2.bc
-; RUN: llvm-as %p/TestInputs/fiz.ll -o %t3.bc
-; RUN: llvm-as %p/TestInputs/bar.ll -o %t4.bc
-; RUN: llvm-as %p/TestInputs/old.ll -o %t5.bc
+; RUN: llvm-as %p/Inputs/foo.ll -o %t2.bc
+; RUN: llvm-as %p/Inputs/fiz.ll -o %t3.bc
+; RUN: llvm-as %p/Inputs/bar.ll -o %t4.bc
+; RUN: llvm-as %p/Inputs/old.ll -o %t5.bc
 ; RUN: llvm-lto -exported-symbol main \
 ; RUN:          -exported-symbol foo_on \
 ; RUN:          -exported-symbol foo_off \


        


More information about the llvm-commits mailing list