summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-10 00:40:09 +0800
committerruki <[email protected]>2025-12-09 22:11:51 +0800
commita3899393a91987855ab6e4f9daecd2a388f504ea (patch)
tree2202760d0a99037b5ebec736189df4d79d5c90a7
parent00796222e10862c402e84f955e8a4bf48de48bcc (diff)
improve test again
-rw-r--r--tests/projects/other/multiplats_xcode/test.lua2
-rw-r--r--tests/projects/other/multiplats_xcode/xmake.lua6
2 files changed, 0 insertions, 8 deletions
diff --git a/tests/projects/other/multiplats_xcode/test.lua b/tests/projects/other/multiplats_xcode/test.lua
index e61518221..2bf740b51 100644
--- a/tests/projects/other/multiplats_xcode/test.lua
+++ b/tests/projects/other/multiplats_xcode/test.lua
@@ -2,7 +2,5 @@ function main(t)
if is_host("macosx") then
os.exec("xmake f -c -vD")
os.exec("xmake -rvD")
- os.exec("xmake f -c -vD -p iphoneos")
- os.exec("xmake -rvD test_iphoneos")
end
end
diff --git a/tests/projects/other/multiplats_xcode/xmake.lua b/tests/projects/other/multiplats_xcode/xmake.lua
index e8fbbb372..c69dfcdd4 100644
--- a/tests/projects/other/multiplats_xcode/xmake.lua
+++ b/tests/projects/other/multiplats_xcode/xmake.lua
@@ -7,9 +7,3 @@ target("test_iphoneos")
set_kind("binary")
add_files("src/*.c")
set_plat("iphoneos")
-
-target("test_iphoneos_armv7")
- set_kind("binary")
- add_files("src/*.c")
- set_plat("iphoneos")
- set_arch("armv7")