blob: f5e400b5f199f819ab0603798854d400e1ecb488 [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.
#
# Runs local tests for scripts/bootstrap.sh. Not runnable on CQ.
#
# Usage:
# $FUCHSIA_EMBEDDER_DIR/scripts/tests/bootstrap_test.sh
set -e # Fail on any error.
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"/../lib/helpers.sh || exit $?
echo-info 'Testing bootstrap.sh from $FUCHSIA_EMBEDDER_DIR ...'
pushd $FUCHSIA_EMBEDDER_DIR
$FUCHSIA_EMBEDDER_DIR/scripts/bootstrap.sh
popd # $FUCHSIA_EMBEDDER_DIR
echo-info 'Testing bootstrap.sh from $HOME ...'
pushd $HOME
$FUCHSIA_EMBEDDER_DIR/scripts/bootstrap.sh
popd # $HOME