blob: 0c5a2aa81a582967e8cab79e4a5ddf68b707c953 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use {anyhow::Error, blackout_host::Test, std::time::Duration};
fn main() -> Result<(), Error> {
Test::new("minfs-fsck-target")
.collect_options()
.setup_step()
.load_step(Duration::from_secs(10))
.reboot_step()
.verify_step(10, Duration::from_secs(1))
.run()?;
Ok(())
}