blob: fc6164613d6259186abd999466414dcc077e8acf [file] [log] [blame]
#!/usr/bin/env bash
# Copyright (C) 2016 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.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
#
# Usage:
# -- Update test_list.txt with new tests/methods whenever new code is added.
# -- Run this script ./gen-test-list-xml
# -- Save the updated .xml file into the build, so ctsv1 knows how to run our testng tests.
#
test_list_txt=$DIR/test_list.txt
[[ -f $test_list_txt ]] || echo "Can't find $test_list_txt" >&2
$DIR/../../../tools/testng/gen-test-list-xml.py --app-package-name android.libcore.oj --cts-name CtsLibcoreOj --jar-path CtsLibcoreOj.jar $DIR/test_list.txt