blob: c7fb5d74e50a00b7bd97d0317b7299f8bbd3f84f [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.
package simulator
import (
"testing"
"go.fuchsia.dev/fuchsia/src/recovery/simulator/support"
"go.fuchsia.dev/fuchsia/src/testing/qemu"
)
// TestUnpack checks that we can unpack qemu.
func TestBoot(t *testing.T) {
distro, err := qemu.Unpack()
if err != nil {
t.Fatal(err)
}
defer distro.Delete()
arch, err := distro.TargetCPU()
if err != nil {
t.Fatal(err)
}
i := distro.Create(qemu.Params{
Arch: arch,
ZBI: support.ZbiPath(t),
})
i.Start()
if err != nil {
t.Fatal(err)
}
defer i.Kill()
i.WaitForLogMessage("recovery: started")
}