blob: 7c224815f0b398e165e9d160259c8d776497a9de [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.
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")