blob: 2d96029aeedef5b29cf2842ab42f592d1b851af6 [file] [log] [blame]
# Copyright 2021 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.
import("//src/sys/build/components.gni")
fuchsia_component("vm-stress-test") {
manifest = "meta/vm-stress-test.cmx"
deps = [ "//src/zircon/bin/kstress" ]
}
# This test will run for 22 hours on the core.qemu-x64-stress bot.
fuchsia_test_package("kernel-stress-tests") {
test_components = [ ":vm-stress-test" ]
test_specs = {
environments = [
{
dimensions = {
device_type = "QEMU"
}
tags = [ "stress-tests" ]
},
]
}
}
group("tests") {
testonly = true
deps = [ ":kernel-stress-tests" ]
}