[llvm] f715ff4 - [JITLink] [test] Generalize UNSUPPORTED markings for Windows/arm64 (#142377)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 10 02:06:32 PDT 2025
Author: Martin Storsjö
Date: 2025-06-10T12:06:29+03:00
New Revision: f715ff4a9d63c00d6903ec876870e6111b50f2d1
URL: https://github.com/llvm/llvm-project/commit/f715ff4a9d63c00d6903ec876870e6111b50f2d1
DIFF: https://github.com/llvm/llvm-project/commit/f715ff4a9d63c00d6903ec876870e6111b50f2d1.diff
LOG: [JITLink] [test] Generalize UNSUPPORTED markings for Windows/arm64 (#142377)
Don't needlessly specify the vendor field as "pc"; in MinGW
configurations, the vendor field is often "w64".
Added:
Modified:
llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive-with-duplicate-member-filenames.test
llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive.test
llvm/test/ExecutionEngine/JITLink/Generic/sectcreate.test
Removed:
################################################################################
diff --git a/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive-with-duplicate-member-filenames.test b/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive-with-duplicate-member-filenames.test
index 02778d4025922..0b663617d5e03 100644
--- a/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive-with-duplicate-member-filenames.test
+++ b/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive-with-duplicate-member-filenames.test
@@ -8,7 +8,7 @@
# RUN: | FileCheck %s
#
# FIXME: Enable this test on Windows/arm64 once that backend is available.
-# UNSUPPORTED: target=aarch64-pc-windows-{{.*}}
+# UNSUPPORTED: target=aarch64-{{.*}}-windows-{{.*}}
#
# On MinGW targets, when compiling the main() function, it gets
# an implicitly generated call to __main(), which is missing in
diff --git a/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive.test b/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive.test
index f162af5a204af..7172db200fef9 100644
--- a/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive.test
+++ b/llvm/test/ExecutionEngine/JITLink/Generic/all-load-multifile-archive.test
@@ -7,7 +7,7 @@
# RUN: | FileCheck %s
#
# FIXME: Enable this test on Windows/arm64 once that backend is available.
-# UNSUPPORTED: target=aarch64-pc-windows-{{.*}}
+# UNSUPPORTED: target=aarch64-{{.*}}-windows-{{.*}}
#
# On MinGW targets, when compiling the main() function, it gets
# an implicitly generated call to __main(), which is missing in
diff --git a/llvm/test/ExecutionEngine/JITLink/Generic/sectcreate.test b/llvm/test/ExecutionEngine/JITLink/Generic/sectcreate.test
index 08b6372dcf2c7..bab0a7d4f2e7d 100644
--- a/llvm/test/ExecutionEngine/JITLink/Generic/sectcreate.test
+++ b/llvm/test/ExecutionEngine/JITLink/Generic/sectcreate.test
@@ -6,7 +6,7 @@
# Use -sectcreate to create a section from a data file.
# Jitlink does not support ARM64 COFF files.
-# UNSUPPORTED: target=aarch64-pc-windows-{{.*}}
+# UNSUPPORTED: target=aarch64-{{.*}}-windows-{{.*}}
# On MinGW targets, when compiling the main() function, it gets
# an implicitly generated call to __main(), which is missing in
More information about the llvm-commits
mailing list