diff options
| author | Saikari <[email protected]> | 2026-02-23 18:01:38 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-23 18:01:38 +0300 |
| commit | 3cf862ee32ea653871d4069b56b619a8cf477e38 (patch) | |
| tree | 7ce15c80dc1fa5cbb894e797f0871fd0065e31f1 /tests/plugins/create | |
| parent | 8ed3f12c86b74cb46e110e56c2ed20d88b242cee (diff) | |
| parent | ea307e0b88527bc61864766c16dfd346470b2d80 (diff) | |
Merge branch 'xmake-io:dev' into em
Diffstat (limited to 'tests/plugins/create')
| -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 |
