diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-07-15 01:47:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 19:47:47 +0200 |
commit | 844910e44fc9433e5ac4ba03ade72292a32326e8 (patch) | |
tree | b8fcba4598b5bb789e3d896db7cd16574d4da197 /cli/tests/integration/test_tests.rs | |
parent | 5b771e7e83b32402f06873e684efb2381971e0f6 (diff) |
test(cli): ensure clear timeout doesn't trigger sanitizers (#11396)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index c029b154d..64ad29e22 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -97,6 +97,12 @@ itest!(exit_sanitizer { exit_code: 1, }); +itest!(clear_timeout { + args: "test test/clear_timeout.ts", + exit_code: 0, + output: "test/clear_timeout.out", +}); + itest!(finally_timeout { args: "test test/finally_timeout.ts", exit_code: 1, |