blob: fa14fecbf0d57dc09d9018b2e1a21c1b7f451571 [file] [log] [blame]
#!/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 "$@"