| # Copyright 2020 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/debug_symbols", | |
| "fuchsia/status_check", | |
| ] | |
| def RunSteps(api): | |
| api.debug_symbols.fetch_and_upload( | |
| packages=["foo-debug-symbols-amd64", "foo-debug-symbols-arm64"], | |
| version="version:123", | |
| buckets=["foo", "bar"], | |
| ) | |
| def GenTests(api): | |
| yield api.status_check.test("basic") |