diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2023-02-22 19:32:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 19:32:38 +0200 |
commit | b56b8c8a753442036ace3bb0f4403c952f18d408 (patch) | |
tree | 675c47da4847a754cf2cc3cb664dc8047944246d /cli/tests/integration/run_tests.rs | |
parent | 2bd7482295daae4edfd367d84505bb43735cd410 (diff) |
feat(ext/ffi): Replace pointer integers with v8::External objects (#16889)
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r-- | cli/tests/integration/run_tests.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 6a436c318..d42136f84 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2824,6 +2824,30 @@ itest!(unstable_ffi_15 { exit_code: 70, }); +itest!(unstable_ffi_16 { + args: "run run/ffi/unstable_ffi_16.js", + output: "run/ffi/unstable_ffi_16.js.out", + exit_code: 70, +}); + +itest!(unstable_ffi_17 { + args: "run run/ffi/unstable_ffi_17.js", + output: "run/ffi/unstable_ffi_17.js.out", + exit_code: 70, +}); + +itest!(unstable_ffi_18 { + args: "run run/ffi/unstable_ffi_18.js", + output: "run/ffi/unstable_ffi_18.js.out", + exit_code: 70, +}); + +itest!(unstable_ffi_19 { + args: "run run/ffi/unstable_ffi_19.js", + output: "run/ffi/unstable_ffi_19.js.out", + exit_code: 70, +}); + itest!(future_check2 { args: "run --check run/future_check.ts", output: "run/future_check2.out", |