| # 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. | |
| DEPS = [ | |
| "fuchsia/buildproxywrap", | |
| "recipe_engine/path", | |
| ] | |
| def RunSteps(api): | |
| api.buildproxywrap.env(api.path.mkdtemp()) | |
| api.buildproxywrap.proxied_step( | |
| "proxied step", | |
| ["foo", "bar"], | |
| api.path.mkdtemp("socket_dir"), | |
| ok_ret="any", | |
| timeout=60, | |
| ) | |
| def GenTests(api): | |
| yield api.test("default") |