summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/test/xmake.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/actions/test/xmake.lua b/tests/actions/test/xmake.lua
index 641b4c764..328e817dd 100644
--- a/tests/actions/test/xmake.lua
+++ b/tests/actions/test/xmake.lua
@@ -17,4 +17,10 @@ target("test_10")
set_kind("binary")
set_default(false)
add_files("src/compile.cpp")
- add_tests("compile", {build_should_fail = true})
+ add_tests("compile_fail", {build_should_fail = true})
+
+target("test_11")
+ set_kind("binary")
+ set_default(false)
+ add_files("src/compile.cpp")
+ add_tests("compile_pass", {build_should_pass = true})