| # Copyright 2022 The ChromiumOS Authors | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| PYTHON_VERSION_COMPATIBILITY = "PY3" | |
| DEPS = [ | |
| "crosvm", | |
| ] | |
| def RunSteps(api): | |
| with api.crosvm.cros_container_build_context(): | |
| api.crosvm.step_in_container("true", ["true"], cros=True) | |
| def GenTests(api): | |
| yield api.test("basic") |