@@ -129,7 +129,6 @@ def test_rss_memory_lower(uvm_plain_any):
129
129
130
130
# Start the microvm.
131
131
test_microvm .start ()
132
- test_microvm .wait_for_up ()
133
132
134
133
_test_rss_memory_lower (test_microvm )
135
134
@@ -151,7 +150,6 @@ def test_inflate_reduces_free(uvm_plain_any):
151
150
152
151
# Start the microvm
153
152
test_microvm .start ()
154
- test_microvm .wait_for_up ()
155
153
firecracker_pid = test_microvm .firecracker_pid
156
154
157
155
# Get the free memory before ballooning.
@@ -198,7 +196,6 @@ def test_deflate_on_oom(uvm_plain_any, deflate_on_oom):
198
196
199
197
# Start the microvm.
200
198
test_microvm .start ()
201
- test_microvm .wait_for_up ()
202
199
firecracker_pid = test_microvm .firecracker_pid
203
200
204
201
# We get an initial reading of the RSS, then calculate the amount
@@ -243,7 +240,6 @@ def test_reinflate_balloon(uvm_plain_any):
243
240
244
241
# Start the microvm.
245
242
test_microvm .start ()
246
- test_microvm .wait_for_up ()
247
243
firecracker_pid = test_microvm .firecracker_pid
248
244
249
245
# First inflate the balloon to free up the uncertain amount of memory
@@ -303,7 +299,6 @@ def test_size_reduction(uvm_plain_any):
303
299
304
300
# Start the microvm.
305
301
test_microvm .start ()
306
- test_microvm .wait_for_up ()
307
302
firecracker_pid = test_microvm .firecracker_pid
308
303
309
304
# Check memory usage.
@@ -348,7 +343,6 @@ def test_stats(uvm_plain_any):
348
343
349
344
# Start the microvm.
350
345
test_microvm .start ()
351
- test_microvm .wait_for_up ()
352
346
firecracker_pid = test_microvm .firecracker_pid
353
347
354
348
# Give Firecracker enough time to poll the stats at least once post-boot
@@ -417,7 +411,6 @@ def test_stats_update(uvm_plain_any):
417
411
418
412
# Start the microvm.
419
413
test_microvm .start ()
420
- test_microvm .wait_for_up ()
421
414
firecracker_pid = test_microvm .firecracker_pid
422
415
423
416
# Dirty 30MB of pages.
@@ -469,7 +462,6 @@ def test_balloon_snapshot(microvm_factory, guest_kernel, rootfs):
469
462
)
470
463
471
464
vm .start ()
472
- vm .wait_for_up ()
473
465
474
466
# Dirty 60MB of pages.
475
467
make_guest_dirty_memory (vm .ssh , amount_mib = 60 )
@@ -496,8 +488,6 @@ def test_balloon_snapshot(microvm_factory, guest_kernel, rootfs):
496
488
microvm .spawn ()
497
489
microvm .restore_from_snapshot (snapshot , resume = True )
498
490
499
- microvm .wait_for_up ()
500
-
501
491
# Get the firecracker from snapshot pid, and open an ssh connection.
502
492
firecracker_pid = microvm .firecracker_pid
503
493
@@ -549,7 +539,6 @@ def test_memory_scrub(microvm_factory, guest_kernel, rootfs):
549
539
)
550
540
551
541
microvm .start ()
552
- microvm .wait_for_up ()
553
542
554
543
# Dirty 60MB of pages.
555
544
make_guest_dirty_memory (microvm .ssh , amount_mib = 60 )
0 commit comments