1#!/bin/bash 2# 3# Copyright (C) 2008 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# Write out files with 32768 total static string declarations, so that 18# the reference to "zorch" in the real test file will be guaranteed to 19# need a jumbo string reference (it sorts last after all the others). 20# Note: Each string reference is stored in a separate static variable, 21# and that variable's name is also represented in the strings, which 22# is why we can just have 32768 and not 65536 declarations. 23 24awk ' 25BEGIN { 26 writeFile("Zorch1", 0, 16383); 27 writeFile("Zorch2", 16384, 32767); 28} 29function writeFile(name, start, end) { 30 fileName = name ".java"; 31 printf("public class %s {\n", name) > fileName; 32 for (i = start; i <= end; i++) { 33 printf(" static public final String s%d = \"%d\";\n", 34 i, i) > fileName; 35 } 36 printf("}\n") > fileName; 37}' 38 39$JAVAC -d . *.java 40dx --debug --dex --no-optimize --positions=none --no-locals \ 41 --dump-method=Blort.test *.class 42