3e5fcd8a61
When I enabled the envsetup_tests target on CI, this script was failing. Rather than break the build again by enabling CI on a potentially failing script, let's just disable this for now, enable the CI target, and then this script can be enabled and tested in presubmits before submitting. Bug: 244771601 Test: build/make/tests/roboleaf_tests.sh Change-Id: I7c3469b49258e37c0ff9b49dd8805031216a7570
25 lines
770 B
Bash
Executable file
25 lines
770 B
Bash
Executable file
#!/bin/bash -e
|
|
# Copyright (C) 2022 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
exit 0 #TODO(b/244771600) remove this after CI is enabled
|
|
|
|
tests=(
|
|
$(dirname $0)/b_tests.sh
|
|
)
|
|
|
|
for test in $tests; do
|
|
bash -x $test
|
|
zsh -x $test
|
|
done
|