From 8a2287c6a462fbd338086d0f3f819c4bd2469bd9 Mon Sep 17 00:00:00 2001 From: Jean-Marie Henaff Date: Wed, 15 Oct 2014 12:07:58 +0200 Subject: Use new JUnit based test framework Bug: 18547020 Change-Id: I5d02ebdecbf79bea035ae8a042d50a06aa7c2a62 --- jack-tests/run-jack-tests | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 jack-tests/run-jack-tests (limited to 'jack-tests/run-jack-tests') diff --git a/jack-tests/run-jack-tests b/jack-tests/run-jack-tests new file mode 100755 index 0000000..31d8593 --- /dev/null +++ b/jack-tests/run-jack-tests @@ -0,0 +1,25 @@ +# Copyright (C) 2012 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. + +#!/bin/bash + +if [ $# -lt 2 ] +then + echo "Usage: $(basename $0) +" + exit 1 +fi +set -x +CURRENT_DIR=$(dirname $0) +java -Dtests.config=$1 -cp $CURRENT_DIR/dist/jack-tests.jar:$CURRENT_DIR/../jack/dist/jackunittests-lib.jar org.junit.runner.JUnitCore $2 + -- cgit v1.1