blob: 2188516a35aef9624b4fcfa1a4b78c5abdbefa1f [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 (
"os"
"path/filepath"
"strings"
"testing"
"go.fuchsia.dev/fuchsia/tools/emulator"
"go.fuchsia.dev/fuchsia/tools/emulator/emulatortest"
)
func TestInvalidSerialSetting(t *testing.T) {
exDir := execDir(t)
distro := emulatortest.UnpackFrom(t, filepath.Join(exDir, "test_data"), emulator.DistributionParams{
Emulator: emulator.Qemu,
})
arch := distro.TargetCPU()
device := emulator.DefaultVirtualDevice(string(arch))
device.Initrd = "zircon-r" // zedboot zbi.
device.KernelArgs = append(device.KernelArgs, "kernel.enable-serial-syscalls=badvalue")
stdout, stderr := distro.RunNonInteractive(
"/boot/bin/syscall-check",
filepath.Join(exDir, "test_data", "tools", "minfs"),
filepath.Join(exDir, "test_data", "tools", "zbi"),
device,
)
ensureContains(t, stdout, "zx_debug_read: disabled")
ensureContains(t, stdout, "zx_debug_write: disabled")
if stderr != "" {
t.Fatal(stderr)
}
}
func execDir(t *testing.T) string {
ex, err := os.Executable()
if err != nil {
t.Fatal(err)
}
return filepath.Dir(ex)
}
func ensureContains(t *testing.T, output string, lookFor string) {
if !strings.Contains(output, lookFor) {
t.Fatalf("output did not contain '%s'", lookFor)
}
}