You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With unwind enabled, test_thread_reuse() fails with message:
---- test_thread_reuse stdout ----
thread 'test_thread_reuse' panicked at src/python_spy.rs:451:25:
Native stack traces not supported on this platform
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
failures:
test_thread_reuse
The root cause is that _get_pthread_id() succeeds on my dev machine but fails on github testbed.
It also fails on macos with message:
---- test_thread_reuse stdout ----
thread 'test_thread_reuse' panicked at tests/integration_test.rs:42:65:
called `Result::unwrap()` on an `Err` value: Failed to open process - check if it is running.
Caused by:
0: Operation timed out (os error 60)
1: Operation timed out (os error 60)
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
failures:
test_thread_reuse
The text was updated successfully, but these errors were encountered:
The root cause is that _get_pthread_id() succeeds on my dev machine but fails on github testbed.
Do you have a link to a failing run here? We are running this integration_test.rs as part of the linux CI here on every PR - and I haven't seen a failure yet
On linux, this test will need the native unwind support to work reliably (so compiled w/ --features unwind now) - and maybe this needs added to the build.yml cargo test ... command line (?)
With
unwind
enabled, test_thread_reuse() fails with message:The root cause is that _get_pthread_id() succeeds on my dev machine but fails on github testbed.
It also fails on macos with message:
The text was updated successfully, but these errors were encountered: