blob: 51c23900c39f13d61c8ef1e279585b287941d159 [file] [log] [blame]
// Copyright 2023 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.
#include "zircon/system/utest/device-enumeration/common.h"
namespace {
TEST_F(DeviceEnumerationTest, GceArm64Test) {
#ifdef __aarch64__
static const char* kDevicePaths[] = {
// TODO(https://fxbug.dev/42052364): Once we use userspace PCI, add PCI devices we expect to see.
"sys/platform/pt/acpi",
"sys/platform/pt/acpi/_SB_",
};
ASSERT_NO_FATAL_FAILURE(TestRunner(kDevicePaths, std::size(kDevicePaths)));
return;
#endif
ASSERT_TRUE(false, "GCE board not ARM64.");
}
} // namespace