diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2023-06-28 23:41:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 14:41:59 -0600 |
commit | 3be538106027f9018634fb34306902e2fe6c4c97 (patch) | |
tree | 896a5e0520c9a34ffc824707399a207cf7906a75 | |
parent | 30f2cd3d1e0f7014156d05a0b08efd6b0e92f170 (diff) |
fix(test_ffi): thread_safe_callback is flaky (#19640)
Attempts to fix the thread_safe_callback flakiness. It's unclear what
the flake is about, the exit code is apparently `C0000005` or
`ACCESS_VIOLATION`, pointing to an issue with memory access. My only
guess is that maybe dropping the `Option<extern "C" fn ()>` is somehow
checking the validity of the function pointer and since the function has
been dropped, the pointer is no longer valid and sometimes points to
memory that should not be accessed.
So now the will explicitly drop the functions before they get
deallocated. If this doesn't fix the flake then something beyond my
understanding is wrong.
-rw-r--r-- | test_ffi/tests/integration_tests.rs | 2 | ||||
-rw-r--r-- | test_ffi/tests/thread_safe_test.js | 5 | ||||
-rw-r--r-- | test_ffi/tests/thread_safe_test_worker.js | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/test_ffi/tests/integration_tests.rs b/test_ffi/tests/integration_tests.rs index e850a174a..a4f233e45 100644 --- a/test_ffi/tests/integration_tests.rs +++ b/test_ffi/tests/integration_tests.rs @@ -176,8 +176,10 @@ fn thread_safe_callback() { let expected = "\ Callback on main thread\n\ Callback on worker thread\n\ + STORED_FUNCTION cleared\n\ Calling callback, isolate should stay asleep until callback is called\n\ Callback being called\n\ + STORED_FUNCTION cleared\n\ Isolate should now exit\n"; assert_eq!(stdout, expected); assert_eq!(stderr, ""); diff --git a/test_ffi/tests/thread_safe_test.js b/test_ffi/tests/thread_safe_test.js index 62c78279d..41ab803be 100644 --- a/test_ffi/tests/thread_safe_test.js +++ b/test_ffi/tests/thread_safe_test.js @@ -71,6 +71,8 @@ dylib.symbols.call_stored_function(); // Unref both main and worker thread callbacks and terminate the worker: Note, the stored function pointer in lib is now dangling. +dylib.symbols.store_function(null); + mainThreadCallback.unref(); await sendWorkerMessage("unref"); worker.terminate(); @@ -90,6 +92,9 @@ cleanupCallback.ref(); function cleanup() { cleanupCallback.unref(); + dylib.symbols.store_function(null); + mainThreadCallback.close(); + cleanupCallback.close(); console.log("Isolate should now exit"); } diff --git a/test_ffi/tests/thread_safe_test_worker.js b/test_ffi/tests/thread_safe_test_worker.js index a87a97556..fb3365bf8 100644 --- a/test_ffi/tests/thread_safe_test_worker.js +++ b/test_ffi/tests/thread_safe_test_worker.js @@ -35,7 +35,7 @@ self.addEventListener("message", ({ data }) => { } else if (data === "call") { dylib.symbols.call_stored_function(); } else if (data === "unref") { - callback.unref(); + callback.close(); } self.postMessage("done"); }); |