summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2022-09-27 22:56:02 +0800
committerruki <[email protected]>2022-09-27 22:56:02 +0800
commitdae9a4fd5c1e75eb64d24c49261d2b4f42d0fbbe (patch)
tree8bd88cba4b1d41c8954198af75e25e563c77d159
parent7d45ffda6d19cd057a445b1a20ad37e8b9094cb5 (diff)
improve tests
-rw-r--r--tests/apis/rules_inject_deps/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/apis/rules_inject_deps/xmake.lua b/tests/apis/rules_inject_deps/xmake.lua
index 383789e0a..18a8fdeaa 100644
--- a/tests/apis/rules_inject_deps/xmake.lua
+++ b/tests/apis/rules_inject_deps/xmake.lua
@@ -5,9 +5,9 @@ rule("cppfront")
rule:add("deps", "cppfront", {order = true})
target:rule_set("c++.build.modules.builder", rule)
end)
- before_build_files(function (target, batchjobs, sourcebatch, opt)
+ before_build_files(function (target, sourcebatch, opt)
print("build cppfront files")
- end, {batch = true})
+ end)
target("test")
set_kind("binary")