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
Hi! In rust-lang/rust#99389 we're making the checks for uninitialized memory stricter, and this crate runs into those. Here's the panics that are ran into.
Running tests/test_topology.rs(/home/jess/.cache/cargo/target/debug/deps/test_topology-d3bc9af299f168dc)
running 1 test
ERROR tempest::metric > Error reading aggregate metrics file:"/tmp/aggregate-metrics-agent"Os{code:2,kind:NotFound,message:"No such file or directory"}
test simple ... FAILED
failures:
---- simple stdout ----
thread '<unnamed>' panicked at 'attempted to leave type `[actix::contextitems::ActorWaitItem<service::agent::AgentService>;2]` uninitialized, which is invalid', /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:49
stack backtrace:0: rust_begin_unwind
1: core::panicking::panic_fmt2: core::panicking::panic3: core::mem::uninitialized
at /home/jess/src/rust/library/core/src/mem/mod.rs:685:94: smallvec::SmallVec<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:495: actix::contextimpl::ContextParts<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/contextimpl.rs:72:196: actix::context::Context<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/context.rs:89:207: actix::actor::Actor::create
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/actor.rs:193:238: tempest::service::agent::AgentService::run
at ./src/service/agent.rs:61:99: tempest::rt::test::run::{{closure}}
at ./src/rt.rs:225:13
note:Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.thread'<unnamed>' panicked at 'attempted to leave type `[actix::contextitems::ActorWaitItem<service::agent_client::AgentClient>;2]` uninitialized, which is invalid', /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:49
stack backtrace:0: rust_begin_unwind
1: core::panicking::panic_fmt2: core::panicking::panic3: core::mem::uninitialized
at /home/jess/src/rust/library/core/src/mem/mod.rs:685:94: smallvec::SmallVec<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:495: actix::contextimpl::ContextParts<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/contextimpl.rs:72:196: actix::context::Context<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/context.rs:89:207: actix::actor::Actor::start
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/actor.rs:128:98: tempest::service::agent_client::AgentClient::connect
at ./src/service/agent_client.rs:53:279: tempest::metric::backend::MetricsAggregateActor::new
at ./src/metric/backend/mod.rs:347:2710: tempest::service::topology::TopologyService::run
at ./src/service/topology.rs:156:3711: tempest::rt::test::run::{{closure}}
at ./src/rt.rs:231:13
note:Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.thread'<unnamed>' panicked at 'attempted to leave type `[actix::contextitems::ActorWaitItem<service::agent_client::AgentClient>;2]` uninitialized, which is invalid', /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:49
stack backtrace:0: rust_begin_unwind
1: core::panicking::panic_fmt2: core::panicking::panic3: core::mem::uninitialized
at /home/jess/src/rust/library/core/src/mem/mod.rs:685:94: smallvec::SmallVec<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs:410:495: actix::contextimpl::ContextParts<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/contextimpl.rs:72:196: actix::context::Context<A>::new
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/context.rs:89:207: actix::actor::Actor::start
at /home/jess/.cargo/registry/src/github.com-1ecc6299db9ec823/actix-0.8.3/src/actor.rs:128:98: tempest::service::agent_client::AgentClient::connect
at ./src/service/agent_client.rs:53:279: tempest::metric::backend::MetricsAggregateActor::new
at ./src/metric/backend/mod.rs:347:2710: tempest::service::task::TaskService::run
at ./src/service/task.rs:239:3711: tempest::rt::task::run
at ./src/rt.rs:326:912: tempest::rt::test::run::{{closure}}
at ./src/rt.rs:260:17
note:Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
thread 'simple' panicked at 'assertion failed: `(left == right)`
left: `None`,
right: `Some(1000)`', tempest/tests/test_topology.rs:17:5
stack backtrace:0: rust_begin_unwind
1: core::panicking::panic_fmt2: core::panicking::assert_failed_inner3: core::panicking::assert_failed
at /home/jess/src/rust/library/core/src/panicking.rs:181:54: test_topology::simple
at ./tests/test_topology.rs:17:55: test_topology::simple::{{closure}}
at ./tests/test_topology.rs:7:16: core::ops::function::FnOnce::call_once
at /home/jess/src/rust/library/core/src/ops/function.rs:248:5
note:Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
failures:
simple
The text was updated successfully, but these errors were encountered:
Hi! In rust-lang/rust#99389 we're making the checks for uninitialized memory stricter, and this crate runs into those. Here's the panics that are ran into.
The text was updated successfully, but these errors were encountered: