We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9043236 commit efefa9fCopy full SHA for efefa9f
1 file changed
libdd-library-config/src/otel_thread_ctx.rs
@@ -353,6 +353,8 @@ pub mod linux {
353
}
354
355
#[cfg(test)]
356
+ // Accessing the TLS through C isn't supported in Miri
357
+ #[cfg_attr(miri, ignore)]
358
mod tests {
359
use super::{ThreadContext, ThreadContextRecord};
360
@@ -534,7 +536,6 @@ pub mod linux {
534
536
535
537
// Make sure the C shim is indeed providing a thread-local address.
538
#[test]
- #[cfg_attr(miri, ignore)]
539
fn tls_slots_are_per_thread() {
540
use std::sync::{Arc, Barrier};
541
0 commit comments