cfuzz #37

Merged
zacheryasc merged 13 commits from cfuzz into master 2026-02-13 15:00:54 +00:00
2 changed files with 1 additions and 10 deletions
Showing only changes of commit e21a4ae19c - Show all commits

View file

@ -1,13 +1,10 @@
// Shared types and helpers for runtime test files.
#![allow(dead_code)]
#![allow(dead_code, unused_imports)]
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;
pub use std::sync::atomic;
pub use std::sync::Arc as StdArc;
pub use swactor::actor::{ActorAddress, ActorInterface, Down, MonitorRef, StopReason};
pub use swactor::runtime::{Ctx, Inbox, MailboxOverflow, Runtime, RuntimeConfig};
pub use swactor_std::{
@ -15,9 +12,6 @@ pub use swactor_std::{
RoutingStrategy, RuntimeGroups, RuntimeNaming, StdExtension, Supervisor, SupervisorStrategy,
};
// Re-export commonly used std items
pub use std::sync::atomic::{AtomicUsize as AtomicUsizeT, Ordering as OrderingT};
// ── Messages ────────────────────────────────────────────────────────────────
#[derive(Clone)]

View file

@ -1,9 +1,6 @@
mod common;
use common::*;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;
// ── Load-Aware Placement Tests ─────────────────────────────────────────────
/// Given a multi-threaded runtime where one worker has many more actors,