| #!/bin/bash | |
| # Copyright 2022 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. | |
| set -e | |
| # This script is used by infra to validate the package can be built and tests | |
| # can pass. | |
| main() { | |
| scripts/smoke_test.sh | |
| echo "Everything build and all tests passed." | |
| } | |
| main "$@" |