Home | History | Annotate | Download | only in 142-const-method-handle
      1 #!/bin/bash
      2 #
      3 # Copyright (C) 2017 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 UNSUPPORTED_SDK_VERSION_0=26
     18 UNSUPPORTED_SDK_VERSION_1=27
     19 SUPPORTED_SDK_VERSION=28
     20 
     21 # Expect failure with unsupported SDK version
     22 EXPECTED_STATUS[${UNSUPPORTED_SDK_VERSION_0}]=1
     23 EXPECTED_STATUS[${UNSUPPORTED_SDK_VERSION_1}]=1
     24 
     25 # Expect success with supported SDK version
     26 EXPECTED_STATUS[${SUPPORTED_SDK_VERSION}]=0
     27 
     28 DX_OUTPUT=dx.log
     29 rm -f ${DX_OUTPUT} 2>/dev/null
     30 
     31 for SDK_VERSION in ${!EXPECTED_STATUS[@]}; do
     32   echo Trying SDK version ${SDK_VERSION} with const-method-handle.
     33   dx --min-sdk-version=${SDK_VERSION} --dex --output=constmethodhandle.dex \
     34      --verbose-dump --dump-to=- --dump-width=1000 constmethodhandle.jar >>${DX_OUTPUT} 2>&1
     35   STATUS=$?
     36   if [[ ${STATUS} != ${EXPECTED_STATUS[$SDK_VERSION]} ]]; then
     37     echo Unexpected status ${STATUS} for SDK version ${SDK_VERSION}.
     38     exit 1
     39   fi
     40 done
     41 
     42 sed -n -e 's/.*: //g' -e 's_ *//.*__' -e '/const-method/p' -e '/dex[\\]/p' ${DX_OUTPUT}
     43