diff options
| author | ruki <[email protected]> | 2026-02-19 22:39:41 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-02-19 22:39:41 +0800 |
| commit | 562cd7187775c7b7184cc7da5fffd0dcc77550d3 (patch) | |
| tree | 220676c0f290f4649cb99c0c3ce4a03e59db56bd /tests/plugins | |
| parent | a7e81f8efefb7d1a621d4a47bfa5208a761d7af4 (diff) | |
fix tmpdir for haiku
Diffstat (limited to 'tests/plugins')
| -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 |
