diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-10-11 23:00:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 17:00:33 +0200 |
commit | 1683044ed97953cb1dbfc0080440d5c4cc47bd2e (patch) | |
tree | e23604c28b8988f76984189c23f88b73415935a1 /cli/tests/integration/test_tests.rs | |
parent | 3b2cb8e7113b19344209eddc8bc1bd447fcec4ea (diff) |
feat: provide ops details for ops sanitizer failures (#12188)
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 3ea8186b8..d4412191e 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -133,6 +133,12 @@ itest!(allow_none { output: "test/allow_none.out", }); +itest!(ops_sanitizer_unstable { + args: "test --unstable test/ops_sanitizer_unstable.ts", + exit_code: 1, + output: "test/ops_sanitizer_unstable.out", +}); + itest!(exit_sanitizer { args: "test test/exit_sanitizer.ts", output: "test/exit_sanitizer.out", |