diff options
| author | ruki <[email protected]> | 2021-06-02 23:51:06 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-06-02 23:51:06 +0800 |
| commit | 2394ef36175e66ac6aa5e958f6e487263e0bd6c0 (patch) | |
| tree | d8983a239903cbc00dca0bcd4dbf56c612cabf98 | |
| parent | bccbaae0a466152fa648ed10156fb6295c862c37 (diff) | |
improve test output
| -rw-r--r-- | tests/actions/package/localpkg/test.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/actions/package/localpkg/test.lua b/tests/actions/package/localpkg/test.lua index 1256b1fa2..a1f03b215 100644 --- a/tests/actions/package/localpkg/test.lua +++ b/tests/actions/package/localpkg/test.lua @@ -1,10 +1,10 @@ function main(t) if (os.subarch():startswith("x") or os.subarch() == "i386") and not is_host("bsd") then os.cd("libfoo") - os.exec("xmake package -vD -o ../bar/build") + os.exec("xmake package -D -o ../bar/build") os.cd("../bar") - os.exec("xmake f -c -vD") - os.exec("xmake -vD") + os.exec("xmake f -c -D") + os.exec("xmake -D") os.exec("xmake run") end end |
