diff options
| author | ruki <[email protected]> | 2026-02-19 20:47:39 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-19 20:47:39 +0800 |
| commit | 23c62e6d3d3b91133221abe4946a5aacc298a836 (patch) | |
| tree | 77dc52c4263d93817940c5c3e8bd69e7b423d49d /tests/plugins/create/test.lua | |
| parent | 821545f6a78188e733b0abe84cdfcb6d07c9e082 (diff) | |
| parent | 104ffb3bc0d4d43f36688ffa778201bed4a71e45 (diff) | |
Merge pull request #7320 from xmake-io/haiku
add haiku ci
Diffstat (limited to 'tests/plugins/create/test.lua')
| -rw-r--r-- | tests/plugins/create/test.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/plugins/create/test.lua b/tests/plugins/create/test.lua index 397f846f4..7813c3ee2 100644 --- a/tests/plugins/create/test.lua +++ b/tests/plugins/create/test.lua @@ -1,11 +1,11 @@ function main () os.tryrm("$(tmpdir)/test_create") os.exec("xmake create -P $(tmpdir)/test_create/test") - os.exec("xmake -P $(tmpdir)/test_create/test") + os.exec("xmake -vD -P $(tmpdir)/test_create/test") os.exec("xmake create -l c++ -P $(tmpdir)/test_create/test_cpp") - os.exec("xmake -P $(tmpdir)/test_create/test_cpp") + os.exec("xmake -vD -P $(tmpdir)/test_create/test_cpp") os.exec("xmake create -l c++ -t static -P $(tmpdir)/test_create/test_cpp2") - os.exec("xmake -P $(tmpdir)/test_create/test_cpp2") + os.exec("xmake -vD -P $(tmpdir)/test_create/test_cpp2") os.exec("xmake create -l c++ -t shared -P $(tmpdir)/test_create/test_cpp3") - os.exec("xmake -P $(tmpdir)/test_create/test_cpp3") + os.exec("xmake -vD -P $(tmpdir)/test_create/test_cpp3") end |
