Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (C) 2014 The Android Open Source Project |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | # Force relocation otherwise we will just use the already created core.oat/art pair. |
| 18 | flags="${@/--no-relocate/--relocate}" |
| 19 | |
| 20 | # Use the non-prebuild script. |
| 21 | RUN="${RUN/push-and-run-prebuilt-test-jar/push-and-run-test-jar}" |
| 22 | |
| 23 | if [ $(basename $RUN) == 'host-run-test-jar' ]; then |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 24 | framework="${ANDROID_HOST_OUT}/framework" |
| 25 | bpath_suffix="-hostdex" |
| 26 | # Remove prebuild from the flags, this test is for testing not having oat files. |
| 27 | flags="${flags/--prebuild/}" |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 28 | else |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 29 | framework="/system/framework" |
| 30 | bpath_suffix="" |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 31 | fi |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 32 | bpath="${framework}/core-libart${bpath_suffix}.jar" |
| 33 | bpath="${bpath}:${framework}/conscrypt${bpath_suffix}.jar" |
| 34 | bpath="${bpath}:${framework}/okhttp${bpath_suffix}.jar" |
| 35 | bpath="${bpath}:${framework}/core-junit${bpath_suffix}.jar" |
| 36 | bpath="${bpath}:${framework}/bouncycastle${bpath_suffix}.jar" |
| 37 | bpath_arg="--runtime-option -Xbootclasspath:${bpath}" |
| 38 | |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 39 | |
| 40 | # Make sure we can run without an oat file, |
| 41 | echo "Run -Xnoimage-dex2oat" |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 42 | ${RUN} ${flags} ${bpath_arg} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 43 | |
| 44 | # Make sure we can run with the oat file. |
| 45 | echo "Run -Ximage-dex2oat" |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 46 | ${RUN} ${flags} ${bpath_arg} --runtime-option -Ximage-dex2oat |
Alex Light | 64ad14d | 2014-08-19 14:23:13 -0700 | [diff] [blame] | 47 | |
| 48 | # Make sure we can run with the default settings. |
| 49 | echo "Run default" |
Alex Light | 1ef4ce8 | 2014-08-27 11:13:47 -0700 | [diff] [blame^] | 50 | ${RUN} ${flags} ${bpath_arg} |