aboutsummaryrefslogtreecommitdiffstats
path: root/src/wireguard/router/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wireguard/router/tests.rs')
-rw-r--r--src/wireguard/router/tests.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wireguard/router/tests.rs b/src/wireguard/router/tests.rs
index 15db368..3d5c79b 100644
--- a/src/wireguard/router/tests.rs
+++ b/src/wireguard/router/tests.rs
@@ -50,7 +50,6 @@ mod tests {
}))
}
- #[allow(dead_code)]
fn reset(&self) {
self.0.send.lock().unwrap().clear();
self.0.recv.lock().unwrap().clear();
@@ -104,9 +103,9 @@ mod tests {
}
}
- // wait for scheduling (VERY conservative)
+ // wait for scheduling
fn wait() {
- thread::sleep(Duration::from_millis(30));
+ thread::sleep(Duration::from_millis(15));
}
fn init() {
@@ -162,7 +161,7 @@ mod tests {
};
let msg = make_packet_padded(1024, src, dst, 0);
- // every iteration sends 10 MB
+ // every iteration sends 10 GB
b.iter(|| {
opaque.store(0, Ordering::SeqCst);
while opaque.load(Ordering::Acquire) < 10 * 1024 * 1024 {