| #!/bin/bash | |
| # Copyright 2020 The Chromium OS Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Usage rev_cts_control_files.sh 7.1_r16 | |
| # where 7.1_r16 is the version of CTS you want to update to. | |
| set -x | |
| set -e | |
| CTS_LETTER="R" | |
| BUG_NUMBER=170182905 | |
| QUALIFIED_CTS_VERSION="-${1}" | |
| DIR="${BASH_SOURCE%/*}" | |
| if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi | |
| . "$DIR/rev_cts_control_files_common.sh" |