blob: 77d441532d85c234e03fa2430fc5e0a14dfec78a [file] [log] [blame]
// Copyright 2020 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 main
import (
"testing"
bootservertest "go.fuchsia.dev/fuchsia/tools/bootserver_old/tests"
)
func TestPaveNoBindFailure(t *testing.T) {
_ = bootservertest.StartQemu(t, []string{"netsvc.all-features=true", "netsvc.netboot=false"}, "full")
// Test that advertise request is NOT serviced and paving does NOT start
// as netsvc.netboot=false
bootservertest.AttemptPaveNoBind(t, false)
}