summaryrefslogtreecommitdiff
path: root/tests/actions/test/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-12-28 22:34:59 +0800
committerruki <[email protected]>2023-12-28 22:34:59 +0800
commit060626edbf26101044d6ab74f7f1af2fd755dc13 (patch)
treee5271d4e3219a275abe9fe8c01b72a25fdc858fd /tests/actions/test/xmake.lua
parent5274ebb6ac3b130f820c9b6caf512181fbde37bf (diff)
test process timeout #4544
Diffstat (limited to 'tests/actions/test/xmake.lua')
-rw-r--r--tests/actions/test/xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/actions/test/xmake.lua b/tests/actions/test/xmake.lua
index a4f75036d..67223bc79 100644
--- a/tests/actions/test/xmake.lua
+++ b/tests/actions/test/xmake.lua
@@ -42,3 +42,10 @@ target("test_15")
set_default(false)
add_files("src/test_1.cpp")
add_tests("stub_n", {files = "tests/stub_n*.cpp", defines = "STUB_N"})
+
+target("test_timeout")
+ set_kind("binary")
+ set_default(false)
+ add_files("src/run_timeout.cpp")
+ add_tests("run_timeout", {run_timeout = 1000})
+