common/bin/compare.sh

Wed, 28 Nov 2012 13:40:17 +0100

author
erikj
date
Wed, 28 Nov 2012 13:40:17 +0100
changeset 518
6ff2e1280dc3
parent 510
a2df4ee40ecb
child 564
befbad2e4d87
permissions
-rw-r--r--

8003844: build-infra: docs target isn't working properly
Summary: Fixed docs and docs-clean target. Added compare support for docs.
Reviewed-by: ohair, jjg, ohrstrom

ohair@494 1 #!/bin/bash
ohair@494 2 #
ohair@494 3 # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
ohair@494 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@494 5 #
ohair@494 6 # This code is free software; you can redistribute it and/or modify it
ohair@494 7 # under the terms of the GNU General Public License version 2 only, as
ohair@494 8 # published by the Free Software Foundation.
ohair@494 9 #
ohair@494 10 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@494 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@494 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@494 13 # version 2 for more details (a copy is included in the LICENSE file that
ohair@494 14 # accompanied this code).
ohair@494 15 #
ohair@494 16 # You should have received a copy of the GNU General Public License version
ohair@494 17 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@494 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@494 19 #
ohair@494 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@494 21 # or visit www.oracle.com if you need additional information or have any
ohair@494 22 # questions.
ohair@494 23 #
ohair@494 24
ohair@494 25 # This script is processed by configure before it's usable. It is run from
ohair@494 26 # the root of the build directory.
ohair@494 27
ohair@494 28
ohair@494 29 ##########################################################################################
ohair@494 30
ohair@494 31 # Check that we are run via the wrapper generated by configure
ohair@494 32 if [ -z "$SRC_ROOT" ]; then
ohair@494 33 echo "Error: You must run this script using build/[conf]/compare.sh"
ohair@494 34 exit 1
ohair@494 35 fi
ohair@494 36
ohair@494 37 if [ "$OPENJDK_TARGET_OS" = "macosx" ]; then
ohair@494 38 FULLDUMP_CMD="$OTOOL -v -V -h -X -t -d"
ohair@494 39 LDD_CMD="$OTOOL -L"
ohair@494 40 DIS_CMD="$OTOOL -v -t"
ohair@494 41 STAT_PRINT_SIZE="-f %z"
ohair@494 42 elif [ "$OPENJDK_TARGET_OS" = "windows" ]; then
ohair@494 43 FULLDUMP_CMD="$DUMPBIN -all"
ohair@494 44 LDD_CMD="$DUMPBIN -dependants | $GREP .dll"
ohair@494 45 DIS_CMD="$DUMPBIN -disasm:nobytes"
ohair@494 46 STAT_PRINT_SIZE="-c %s"
ohair@494 47 else
ohair@494 48 FULLDUMP_CMD="$READELF -a"
ohair@494 49 LDD_CMD="$LDD"
ohair@494 50 DIS_CMD="$OBJDUMP -d"
ohair@494 51 STAT_PRINT_SIZE="-c %s"
ohair@494 52 fi
ohair@494 53
ohair@494 54 UNARCHIVE="$UNZIP -q"
ohair@494 55
ohair@494 56 COMPARE_EXCEPTIONS_INCLUDE="$SRC_ROOT/common/bin/compare_exceptions.sh.incl"
ohair@494 57 if [ ! -e "$COMPARE_EXCEPTIONS_INCLUDE" ]; then
ohair@494 58 echo "Error: Cannot locate the exceptions file, it should have been here: $COMPARE_EXCEPTIONS_INCLUDE"
ohair@494 59 exit 1
ohair@494 60 fi
ohair@494 61 # Include exception definitions
ohair@494 62 . "$COMPARE_EXCEPTIONS_INCLUDE"
ohair@494 63
ohair@494 64 ##########################################################################################
ohair@494 65 # Compare text files and ignore specific differences:
ohair@494 66 #
ohair@494 67 # * Timestamps in Java sources generated by idl2java
ohair@494 68 # * Sorting order and cleanup style in .properties files
ohair@494 69
ohair@494 70 diff_text() {
ohair@494 71 OTHER_FILE=$1
ohair@494 72 THIS_FILE=$2
ohair@494 73
ohair@494 74 SUFFIX="${THIS_FILE##*.}"
ohair@494 75
ohair@494 76 TMP=1
ohair@494 77
ohair@494 78 if [[ "$THIS_FILE" = *"META-INF/MANIFEST.MF" ]]; then
ohair@494 79 TMP=$(LANG=C $DIFF $OTHER_FILE $THIS_FILE | \
ohair@494 80 $GREP '^[<>]' | \
ohair@494 81 $SED -e '/[<>] Ant-Version: Apache Ant .*/d' \
ohair@494 82 -e '/[<>] Created-By: .* (Oracle Corporation).*/d')
ohair@494 83 fi
ohair@494 84 if test "x$SUFFIX" = "xjava"; then
ohair@494 85 TMP=$(LANG=C $DIFF $OTHER_FILE $THIS_FILE | \
ohair@494 86 $GREP '^[<>]' | \
ohair@494 87 $SED -e '/[<>] \* from.*\.idl/d' \
ohair@494 88 -e '/[<>] \*.*[0-9]\{4\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}-b[0-9]\{2\}.*/d' \
ohair@494 89 -e '/[<>] \*.*[0-9]\{4\} [0-9][0-9]*:[0-9]\{2\}:[0-9]\{2\}.*/d' \
ohair@494 90 -e '/\/\/ Generated from input file.*/d' \
ohair@494 91 -e '/\/\/ This file was generated AUTOMATICALLY from a template file.*/d' \
ohair@494 92 -e '/\/\/ java GenerateCharacter.*/d')
ohair@494 93 fi
ohair@494 94 # Ignore date strings in class files.
ohair@494 95 # On Macosx the system sources for generated java classes produce different output on
ohair@494 96 # consequtive invokations seemingly randomly.
ohair@494 97 # For example a method parameter randomly named "thePoint" or "aPoint". Ignore this.
ohair@494 98 if test "x$SUFFIX" = "xclass"; then
ohair@494 99 # To improve performance when large diffs are found, do a rough filtering of classes
ohair@494 100 # elibeble for these exceptions
ohair@494 101 if $GREP -R -e '[0-9]\{4\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}-b[0-9]\{2\}' -e thePoint -e aPoint -e setItemsPtr ${THIS_FILE} > /dev/null; then
ohair@494 102 $JAVAP -c -constants -l -p ${OTHER_FILE} > ${OTHER_FILE}.javap
ohair@494 103 $JAVAP -c -constants -l -p ${THIS_FILE} > ${THIS_FILE}.javap
ohair@494 104 TMP=$($DIFF ${OTHER_FILE}.javap ${THIS_FILE}.javap | \
ohair@494 105 $GREP '^[<>]' | \
ohair@494 106 $SED -e '/[<>].*[0-9]\{4\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}_[0-9]\{2\}-b[0-9]\{2\}.*/d' \
ohair@494 107 -e '/[<>].*Point Lcom\/apple\/jobjc\/foundation\/NSPoint;/d' \
ohair@494 108 -e '/[<>].*public com\.apple\.jobjc\.Pointer<com\.apple\.jobjc\..*itemsPtr();/d' \
ohair@494 109 -e '/[<>].*public void setItemsPtr(com\.apple\.jobjc\.Pointer<com\.apple\.jobjc\..*);/d')
ohair@494 110 fi
ohair@494 111 fi
ohair@494 112 if test "x$SUFFIX" = "xproperties"; then
ohair@494 113 $CAT $OTHER_FILE | $SED -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' -e 's/#.*/#/g' \
ohair@494 114 | $SED -f "$SRC_ROOT/common/makefiles/support/unicode2x.sed" \
ohair@494 115 | $SED -e '/^#/d' -e '/^$/d' \
ohair@494 116 -e :a -e '/\\$/N; s/\\\n//; ta' \
ohair@494 117 -e 's/^[ \t]*//;s/[ \t]*$//' \
ohair@494 118 -e 's/\\=/=/' | LANG=C $SORT > $OTHER_FILE.cleaned
ohair@494 119 TMP=$(LANG=C $DIFF $OTHER_FILE.cleaned $THIS_FILE)
ohair@494 120 fi
ohair@494 121 if test -n "$TMP"; then
ohair@494 122 echo Files $OTHER_FILE and $THIS_FILE differ
ohair@494 123 return 1
ohair@494 124 fi
ohair@494 125
ohair@494 126 return 0
ohair@494 127 }
ohair@494 128
ohair@494 129 ##########################################################################################
ohair@494 130 # Compare directory structure
ohair@494 131
ohair@494 132 compare_dirs() {
ohair@494 133 THIS_DIR=$1
ohair@494 134 OTHER_DIR=$2
ohair@494 135 WORK_DIR=$3
ohair@494 136
ohair@494 137 mkdir -p $WORK_DIR
ohair@494 138
ohair@494 139 (cd $OTHER_DIR && $FIND . -type d | $SORT > $WORK_DIR/dirs_other)
ohair@494 140 (cd $THIS_DIR && $FIND . -type d | $SORT > $WORK_DIR/dirs_this)
ohair@494 141
ohair@494 142 $DIFF $WORK_DIR/dirs_other $WORK_DIR/dirs_other > $WORK_DIR/dirs_diff
ohair@494 143
ohair@494 144 echo -n Directory structure...
ohair@494 145 if [ -s $WORK_DIR/dirs_diff ]; then
ohair@494 146 echo Differences found.
ohair@494 147 REGRESSIONS=true
ohair@494 148 # Differences in directories found.
ohair@494 149 ONLY_OTHER=$($GREP '<' $WORK_DIR/dirs_diff)
ohair@494 150 if [ "$ONLY_OTHER" ]; then
ohair@494 151 echo Only in $OTHER
ohair@494 152 $GREP '<' $WORK_DIR/dirs_diff | $SED 's|< ./| |g'
ohair@494 153 fi
ohair@494 154 ONLY_THIS=$($GREP '>' $WORK_DIR/dirs_diff)
ohair@494 155 if [ "$ONLY_THIS" ]; then
ohair@494 156 echo Only in $THIS
ohair@494 157 $GREP '>' $WORK_DIR/dirs_diff | $SED 's|> ./| |g'
ohair@494 158 fi
ohair@494 159 else
ohair@494 160 echo Identical!
ohair@494 161 fi
ohair@494 162 }
ohair@494 163
ohair@494 164
ohair@494 165 ##########################################################################################
ohair@494 166 # Compare file structure
ohair@494 167
ohair@494 168 compare_files() {
ohair@494 169 THIS_DIR=$1
ohair@494 170 OTHER_DIR=$2
ohair@494 171 WORK_DIR=$3
ohair@494 172
ohair@494 173 $MKDIR -p $WORK_DIR
ohair@494 174
ohair@494 175 (cd $OTHER_DIR && $FIND . ! -type d | $SORT > $WORK_DIR/files_other)
ohair@494 176 (cd $THIS_DIR && $FIND . ! -type d | $SORT > $WORK_DIR/files_this)
ohair@494 177
ohair@494 178 $DIFF $WORK_DIR/files_other $WORK_DIR/files_this > $WORK_DIR/files_diff
ohair@494 179
ohair@494 180 echo -n File names...
ohair@494 181 if [ -s $WORK_DIR/files_diff ]; then
ohair@494 182 echo Differences found.
ohair@494 183 REGRESSIONS=true
ohair@494 184 # Differences in files found.
ohair@494 185 ONLY_OTHER=$($GREP '<' $WORK_DIR/files_diff)
ohair@494 186 if [ "$ONLY_OTHER" ]; then
ohair@494 187 echo Only in $OTHER
ohair@494 188 $GREP '<' $WORK_DIR/files_diff | $SED 's|< ./| |g'
ohair@494 189 fi
ohair@494 190 ONLY_THIS=$($GREP '>' $WORK_DIR/files_diff)
ohair@494 191 if [ "$ONLY_THIS" ]; then
ohair@494 192 echo Only in $THIS
ohair@494 193 $GREP '>' $WORK_DIR/files_diff | $SED 's|> ./| |g'
ohair@494 194 fi
ohair@494 195 else
ohair@494 196 echo Identical!
ohair@494 197 fi
ohair@494 198 }
ohair@494 199
ohair@494 200
ohair@494 201 ##########################################################################################
ohair@494 202 # Compare permissions
ohair@494 203
ohair@494 204 compare_permissions() {
ohair@494 205 THIS_DIR=$1
ohair@494 206 OTHER_DIR=$2
ohair@494 207 WORK_DIR=$3
ohair@494 208
ohair@494 209 mkdir -p $WORK_DIR
ohair@494 210
ohair@494 211 echo -n Permissions...
ohair@494 212 found=""
ohair@494 213 for f in `cd $OTHER_DIR && $FIND . -type f`
ohair@494 214 do
ohair@494 215 if [ ! -f ${OTHER_DIR}/$f ]; then continue; fi
ohair@494 216 if [ ! -f ${THIS_DIR}/$f ]; then continue; fi
ohair@494 217 OP=`ls -l ${OTHER_DIR}/$f | awk '{printf("%.10s\n", $1);}'`
ohair@494 218 TP=`ls -l ${THIS_DIR}/$f | awk '{printf("%.10s\n", $1);}'`
ohair@494 219 if [ "$OP" != "$TP" ]
ohair@494 220 then
ohair@494 221 if [ -z "$found" ]; then echo ; found="yes"; fi
ohair@494 222 $PRINTF "\told: ${OP} new: ${TP}\t$f\n"
ohair@494 223 fi
ohair@494 224 done
ohair@494 225 if [ -z "$found" ]; then
ohair@494 226 echo "Identical!"
ohair@494 227 else
ohair@494 228 REGRESSIONS=true
ohair@494 229 fi
ohair@494 230 }
ohair@494 231
ohair@494 232 ##########################################################################################
ohair@494 233 # Compare file command output
ohair@494 234
ohair@494 235 compare_file_types() {
ohair@494 236 THIS_DIR=$1
ohair@494 237 OTHER_DIR=$2
ohair@494 238 WORK_DIR=$3
ohair@494 239
ohair@494 240 $MKDIR -p $WORK_DIR
ohair@494 241
ohair@494 242 echo -n File types...
ohair@494 243 found=""
ohair@494 244 for f in `cd $OTHER_DIR && $FIND . ! -type d`
ohair@494 245 do
ohair@494 246 if [ ! -f ${OTHER_DIR}/$f ]; then continue; fi
ohair@494 247 if [ ! -f ${THIS_DIR}/$f ]; then continue; fi
ohair@494 248 OF=`cd ${OTHER_DIR} && $FILE -h $f`
ohair@494 249 TF=`cd ${THIS_DIR} && $FILE -h $f`
ohair@494 250 if [ "$f" = "./src.zip" ] || [[ "$f" = *"/Home/src.zip" ]] || [[ "$f" = *"/lib/JObjC.jar" ]]
ohair@494 251 then
ohair@494 252 if [ "`echo $OF | $GREP -ic zip`" -gt 0 -a "`echo $TF | $GREP -ic zip`" -gt 0 ]
ohair@494 253 then
ohair@494 254 # the way we produces zip-files make it so that directories are stored in old file
ohair@494 255 # but not in new (only files with full-path)
ohair@494 256 # this makes file-5.09 report them as different
ohair@494 257 continue;
ohair@494 258 fi
ohair@494 259 fi
ohair@494 260
ohair@494 261 if [ "$OF" != "$TF" ]
ohair@494 262 then
ohair@494 263 if [ -z "$found" ]; then echo ; found="yes"; fi
ohair@494 264 $PRINTF "\tother: ${OF}\n\tthis : ${TF}\n"
ohair@494 265 fi
ohair@494 266 done
ohair@494 267 if [ -z "$found" ]; then
ohair@494 268 echo "Identical!"
ohair@494 269 else
ohair@494 270 REGRESSIONS=true
ohair@494 271 fi
ohair@494 272 }
ohair@494 273
ohair@494 274 ##########################################################################################
ohair@494 275 # Compare the rest of the files
ohair@494 276
ohair@494 277 compare_general_files() {
ohair@494 278 THIS_DIR=$1
ohair@494 279 OTHER_DIR=$2
ohair@494 280 WORK_DIR=$3
ohair@494 281
ohair@494 282 GENERAL_FILES=$(cd $THIS_DIR && $FIND . -type f ! -name "*.so" ! -name "*.jar" ! -name "*.zip" \
ohair@494 283 ! -name "*.debuginfo" ! -name "*.dylib" ! -name "jexec" \
ohair@494 284 ! -name "ct.sym" ! -name "*.diz" ! -name "*.dll" \
ohair@494 285 ! -name "*.pdb" ! -name "*.exp" ! -name "*.ilk" \
tbell@510 286 ! -name "*.lib" ! -name "*.war" ! -name "JavaControlPanel" \
ohair@494 287 | $GREP -v "./bin/" | $SORT | $FILTER)
ohair@494 288
ohair@494 289 echo General files...
ohair@494 290 for f in $GENERAL_FILES
ohair@494 291 do
ohair@494 292 if [ -e $OTHER_DIR/$f ]; then
erikj@518 293 SUFFIX="${f##*.}"
ohair@494 294 if [ "$(basename $f)" = "release" ]; then
ohair@494 295 # Ignore differences in change numbers in release file.
ohair@494 296 OTHER_FILE=$WORK_DIR/$f.other
ohair@494 297 THIS_FILE=$WORK_DIR/$f.this
ohair@494 298 $MKDIR -p $(dirname $OTHER_FILE)
ohair@494 299 $MKDIR -p $(dirname $THIS_FILE)
ohair@494 300 $CAT $OTHER_DIR/$f | $SED 's/\:[0-9a-f]\{12,12\}/:CHANGE/g' > $OTHER_FILE
ohair@494 301 $CAT $THIS_DIR/$f | $SED 's/\:[0-9a-f]\{12,12\}/:CHANGE/g' > $THIS_FILE
erikj@518 302 elif [ "x$SUFFIX" = "xhtml" ]; then
erikj@518 303 # Ignore time stamps in docs files
erikj@518 304 OTHER_FILE=$WORK_DIR/$f.other
erikj@518 305 THIS_FILE=$WORK_DIR/$f.this
erikj@518 306 $MKDIR -p $(dirname $OTHER_FILE)
erikj@518 307 $MKDIR -p $(dirname $THIS_FILE)
erikj@518 308 $CAT $OTHER_DIR/$f | $SED -e 's/\(-- Generated by javadoc \).*\( --\)/\1(removed)\2/' \
erikj@518 309 -e 's/\(<meta name="date" content="\).*\(">\)/\1(removed)\2/' \
erikj@518 310 -e 's/\(Monday\|Tuesday\|Wednesday\|Thursday\|Friday\|Saturday\|Sunday\), [A-Z][a-z]* [0-9][0-9]*, [12][0-9]* [0-9][0-9:]* \(AM\|PM\) [A-Z][A-Z]*/(removed)/' \
erikj@518 311 -e 's/^\( from \).*\(\.idl\)$/\1(removed)\2/' \
erikj@518 312 > $OTHER_FILE
erikj@518 313 $CAT $THIS_DIR/$f | $SED -e 's/\(-- Generated by javadoc \).*\( --\)/\1(removed)\2/' \
erikj@518 314 -e 's/\(<meta name="date" content="\).*\(">\)/\1(removed)\2/' \
erikj@518 315 -e 's/\(Monday\|Tuesday\|Wednesday\|Thursday\|Friday\|Saturday\|Sunday\), [A-Z][a-z]* [0-9][0-9]*, [12][0-9]* [0-9][0-9:]* \(AM\|PM\) [A-Z][A-Z]*/(removed)/' \
erikj@518 316 -e 's/^\( from \).*\(\.idl\)$/\1(removed)\2/' \
erikj@518 317 > $THIS_FILE
ohair@494 318 else
ohair@494 319 OTHER_FILE=$OTHER_DIR/$f
ohair@494 320 THIS_FILE=$THIS_DIR/$f
ohair@494 321 fi
ohair@494 322 DIFF_OUT=$($DIFF $OTHER_FILE $THIS_FILE 2>&1)
ohair@494 323 if [ -n "$DIFF_OUT" ]; then
ohair@494 324 echo $f
ohair@494 325 REGRESSIONS=true
ohair@494 326 if [ "$SHOW_DIFFS" = "true" ]; then
ohair@494 327 echo "$DIFF_OUT"
ohair@494 328 fi
ohair@494 329 fi
ohair@494 330 fi
ohair@494 331 done
ohair@494 332
ohair@494 333
ohair@494 334 }
ohair@494 335
ohair@494 336 ##########################################################################################
ohair@494 337 # Compare zip file
ohair@494 338
ohair@494 339 compare_zip_file() {
ohair@494 340 THIS_DIR=$1
ohair@494 341 OTHER_DIR=$2
ohair@494 342 WORK_DIR=$3
ohair@494 343 ZIP_FILE=$4
ohair@494 344
ohair@494 345 THIS_ZIP=$THIS_DIR/$ZIP_FILE
ohair@494 346 OTHER_ZIP=$OTHER_DIR/$ZIP_FILE
ohair@494 347
ohair@494 348 THIS_SUFFIX="${THIS_ZIP##*.}"
ohair@494 349 OTHER_SUFFIX="${OTHER_ZIP##*.}"
ohair@494 350 if [ "$THIS_SUFFIX" != "$OTHER_SUFFIX" ]; then
ohair@494 351 echo The files do not have the same suffix type!
ohair@494 352 return 2
ohair@494 353 fi
ohair@494 354
ohair@494 355 TYPE="$THIS_SUFFIX"
ohair@494 356
ohair@494 357 if $CMP $OTHER_ZIP $THIS_ZIP > /dev/null
ohair@494 358 then
ohair@494 359 return 0
ohair@494 360 fi
ohair@494 361 # Not quite identical, the might still contain the same data.
ohair@494 362 # Unpack the jar/zip files in temp dirs
ohair@494 363
ohair@494 364 THIS_UNZIPDIR=$WORK_DIR/$ZIP_FILE.this
ohair@494 365 OTHER_UNZIPDIR=$WORK_DIR/$ZIP_FILE.other
ohair@494 366 $RM -rf $THIS_UNZIPDIR $OTHER_UNZIPDIR
ohair@494 367 $MKDIR -p $THIS_UNZIPDIR
ohair@494 368 $MKDIR -p $OTHER_UNZIPDIR
ohair@494 369 (cd $THIS_UNZIPDIR && $UNARCHIVE $THIS_ZIP)
ohair@494 370 (cd $OTHER_UNZIPDIR && $UNARCHIVE $OTHER_ZIP)
ohair@494 371
erikj@502 372 # Find all archives inside and unzip them as well to compare the contents rather than
erikj@502 373 # the archives.
erikj@502 374 EXCEPTIONS=""
erikj@502 375 for pack in $($FIND $THIS_UNZIPDIR -name "*.pack" -o -name "*.pack.gz"); do
erikj@502 376 ($UNPACK200 $pack $pack.jar)
erikj@502 377 # Filter out the unzipped archives from the diff below.
erikj@502 378 EXCEPTIONS="$EXCEPTIONS $pack $pack.jar"
erikj@502 379 done
erikj@502 380 for pack in $($FIND $OTHER_UNZIPDIR -name "*.pack" -o -name "*.pack.gz"); do
erikj@502 381 ($UNPACK200 $pack $pack.jar)
erikj@502 382 EXCEPTIONS="$EXCEPTIONS $pack $pack.jar"
erikj@502 383 done
erikj@502 384 for zip in $($FIND $THIS_UNZIPDIR -name "*.jar" -o -name "*.zip"); do
erikj@502 385 $MKDIR $zip.unzip
erikj@502 386 (cd $zip.unzip && $UNARCHIVE $zip)
erikj@502 387 EXCEPTIONS="$EXCEPTIONS $zip"
erikj@502 388 done
erikj@502 389 for zip in $($FIND $OTHER_UNZIPDIR -name "*.jar" -o -name "*.zip"); do
erikj@502 390 $MKDIR $zip.unzip
erikj@502 391 (cd $zip.unzip && $UNARCHIVE $zip)
erikj@502 392 EXCEPTIONS="$EXCEPTIONS $zip"
erikj@502 393 done
erikj@502 394
ohair@494 395 CONTENTS_DIFF_FILE=$WORK_DIR/$ZIP_FILE.diff
ohair@494 396 # On solaris, there is no -q option.
ohair@494 397 if [ "$OPENJDK_TARGET_OS" = "solaris" ]; then
ohair@494 398 LANG=C $DIFF -r $OTHER_UNZIPDIR $THIS_UNZIPDIR \
ohair@494 399 | $GREP -v -e "^<" -e "^>" -e "^Common subdirectories:" \
ohair@494 400 > $CONTENTS_DIFF_FILE
ohair@494 401 else
ohair@494 402 LANG=C $DIFF -rq $OTHER_UNZIPDIR $THIS_UNZIPDIR > $CONTENTS_DIFF_FILE
ohair@494 403 fi
ohair@494 404
ohair@494 405 ONLY_OTHER=$($GREP "^Only in $OTHER_UNZIPDIR" $CONTENTS_DIFF_FILE)
ohair@494 406 ONLY_THIS=$($GREP "^Only in $THIS_UNZIPDIR" $CONTENTS_DIFF_FILE)
ohair@494 407
ohair@494 408 return_value=0
ohair@494 409
ohair@494 410 if [ -n "$ONLY_OTHER" ]; then
ohair@494 411 echo " Only OTHER $ZIP_FILE contains:"
ohair@494 412 echo "$ONLY_OTHER" | sed "s|Only in $OTHER_UNZIPDIR| |"g | sed 's|: |/|g'
ohair@494 413 return_value=1
ohair@494 414 fi
ohair@494 415
ohair@494 416 if [ -n "$ONLY_THIS" ]; then
ohair@494 417 echo " Only THIS $ZIP_FILE contains:"
ohair@494 418 echo "$ONLY_THIS" | sed "s|Only in $THIS_UNZIPDIR| |"g | sed 's|: |/|g'
ohair@494 419 return_value=1
ohair@494 420 fi
ohair@494 421
ohair@494 422 if [ "$OPENJDK_TARGET_OS" = "solaris" ]; then
ohair@494 423 DIFFING_FILES=$($GREP -e "differ$" -e "^diff " $CONTENTS_DIFF_FILE \
ohair@494 424 | $CUT -f 3 -d ' ' | $SED "s|$OTHER_UNZIPDIR/||g")
ohair@494 425 else
ohair@494 426 DIFFING_FILES=$($GREP -e "differ$" $CONTENTS_DIFF_FILE \
ohair@494 427 | $CUT -f 2 -d ' ' | $SED "s|$OTHER_UNZIPDIR/||g")
ohair@494 428 fi
ohair@494 429
ohair@494 430 $RM -f $WORK_DIR/$ZIP_FILE.diffs
ohair@494 431 for file in $DIFFING_FILES; do
erikj@502 432 if [[ "$ACCEPTED_JARZIP_CONTENTS $EXCEPTIONS" != *"$file"* ]]; then
ohair@494 433 diff_text $OTHER_UNZIPDIR/$file $THIS_UNZIPDIR/$file >> $WORK_DIR/$ZIP_FILE.diffs
ohair@494 434 fi
ohair@494 435 done
ohair@494 436
ohair@494 437 if [ -s "$WORK_DIR/$ZIP_FILE.diffs" ]; then
ohair@494 438 return_value=1
ohair@494 439 echo " Differing files in $ZIP_FILE"
ohair@494 440 $CAT $WORK_DIR/$ZIP_FILE.diffs | $GREP differ | cut -f 2 -d ' ' | \
ohair@494 441 $SED "s|$OTHER_UNZIPDIR| |g" > $WORK_DIR/$ZIP_FILE.difflist
ohair@494 442 $CAT $WORK_DIR/$ZIP_FILE.difflist
ohair@494 443
ohair@494 444 if [ -n "$SHOW_DIFFS" ]; then
ohair@494 445 for i in $(cat $WORK_DIR/$ZIP_FILE.difflist) ; do
ohair@494 446 if [ -f "${OTHER_UNZIPDIR}/$i.javap" ]; then
ohair@494 447 LANG=C $DIFF ${OTHER_UNZIPDIR}/$i.javap ${THIS_UNZIPDIR}/$i.javap
ohair@494 448 elif [ -f "${OTHER_UNZIPDIR}/$i.cleaned" ]; then
ohair@494 449 LANG=C $DIFF ${OTHER_UNZIPDIR}/$i.cleaned ${THIS_UNZIPDIR}/$i
ohair@494 450 else
ohair@494 451 LANG=C $DIFF ${OTHER_UNZIPDIR}/$i ${THIS_UNZIPDIR}/$i
ohair@494 452 fi
ohair@494 453 done
ohair@494 454 fi
ohair@494 455 fi
ohair@494 456
ohair@494 457 return $return_value
ohair@494 458 }
ohair@494 459
ohair@494 460
ohair@494 461 ##########################################################################################
ohair@494 462 # Compare all zip files
ohair@494 463
ohair@494 464 compare_all_zip_files() {
ohair@494 465 THIS_DIR=$1
ohair@494 466 OTHER_DIR=$2
ohair@494 467 WORK_DIR=$3
ohair@494 468
ohair@494 469 ZIPS=$(cd $THIS_DIR && $FIND . -type f -name "*.zip" | $SORT | $FILTER )
ohair@494 470
ohair@494 471 if [ -n "$ZIPS" ]; then
ohair@494 472 echo Zip files...
ohair@494 473
ohair@494 474 return_value=0
ohair@494 475 for f in $ZIPS; do
ohair@494 476 if [ -f "$OTHER_DIR/$f" ]; then
ohair@494 477 compare_zip_file $THIS_DIR $OTHER_DIR $WORK_DIR $f
ohair@494 478 if [ "$?" != "0" ]; then
ohair@494 479 return_value=1
ohair@494 480 REGRESSIONS=true
ohair@494 481 fi
ohair@494 482 fi
ohair@494 483 done
ohair@494 484 fi
ohair@494 485
ohair@494 486 return $return_value
ohair@494 487 }
ohair@494 488
ohair@494 489 ##########################################################################################
ohair@494 490 # Compare all jar files
ohair@494 491
ohair@494 492 compare_all_jar_files() {
ohair@494 493 THIS_DIR=$1
ohair@494 494 OTHER_DIR=$2
ohair@494 495 WORK_DIR=$3
ohair@494 496
ohair@494 497 # TODO filter?
ohair@494 498 ZIPS=$(cd $THIS_DIR && $FIND . -type f -name "*.jar" -o -name "*.war" | $SORT | $FILTER)
ohair@494 499
ohair@494 500 if [ -n "$ZIPS" ]; then
ohair@494 501 echo Jar files...
ohair@494 502
ohair@494 503 return_value=0
ohair@494 504 for f in $ZIPS; do
ohair@494 505 if [ -f "$OTHER_DIR/$f" ]; then
ohair@494 506 compare_zip_file $THIS_DIR $OTHER_DIR $WORK_DIR $f
ohair@494 507 if [ "$?" != "0" ]; then
ohair@494 508 return_value=1
ohair@494 509 REGRESSIONS=true
ohair@494 510 fi
ohair@494 511 fi
ohair@494 512 done
ohair@494 513 fi
ohair@494 514
ohair@494 515 return $return_value
ohair@494 516 }
ohair@494 517
ohair@494 518 ##########################################################################################
ohair@494 519 # Compare binary (executable/library) file
ohair@494 520
ohair@494 521 compare_bin_file() {
ohair@494 522 THIS_DIR=$1
ohair@494 523 OTHER_DIR=$2
ohair@494 524 WORK_DIR=$3
ohair@494 525 BIN_FILE=$4
ohair@494 526
ohair@494 527 THIS_FILE=$THIS_DIR/$BIN_FILE
ohair@494 528 OTHER_FILE=$OTHER_DIR/$BIN_FILE
ohair@494 529 NAME=$(basename $BIN_FILE)
ohair@494 530 WORK_FILE_BASE=$WORK_DIR/$BIN_FILE
ohair@494 531 FILE_WORK_DIR=$(dirname $WORK_FILE_BASE)
ohair@494 532
ohair@494 533 $MKDIR -p $FILE_WORK_DIR
ohair@494 534
ohair@494 535 ORIG_THIS_FILE="$THIS_FILE"
ohair@494 536 ORIG_OTHER_FILE="$OTHER_FILE"
ohair@494 537
ohair@494 538 if [[ "$STRIP_BEFORE_COMPARE" = *"$BIN_FILE"* ]]; then
ohair@494 539 THIS_STRIPPED_FILE=$FILE_WORK_DIR/this/$NAME
ohair@494 540 OTHER_STRIPPED_FILE=$FILE_WORK_DIR/other/$NAME
ohair@494 541 $MKDIR -p $FILE_WORK_DIR/this $FILE_WORK_DIR/other
ohair@494 542 $CP $THIS_FILE $THIS_STRIPPED_FILE
ohair@494 543 $CP $OTHER_FILE $OTHER_STRIPPED_FILE
ohair@494 544 $STRIP $THIS_STRIPPED_FILE
ohair@494 545 $STRIP $OTHER_STRIPPED_FILE
ohair@494 546 THIS_FILE="$THIS_STRIPPED_FILE"
ohair@494 547 OTHER_FILE="$OTHER_STRIPPED_FILE"
ohair@494 548 fi
ohair@494 549
ohair@494 550 if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
ohair@494 551 unset _NT_SYMBOL_PATH
ohair@494 552 # On windows we need to unzip the debug symbols, if present
ohair@494 553 OTHER_FILE_BASE=${OTHER_FILE/.dll/}
ohair@494 554 OTHER_FILE_BASE=${OTHER_FILE_BASE/.exe/}
ohair@494 555 DIZ_NAME=$(basename $OTHER_FILE_BASE).diz
ohair@494 556 # java.exe and java.dll diz files will have the same name. Have to
ohair@494 557 # make sure java.exe gets the right one. This is only needed for
ohair@494 558 # OTHER since in the new build, all pdb files are left around.
ohair@494 559 if [ "$NAME" = "java.exe" ] && [ -f "$OTHER/tmp/java/java/obj64/java.diz" ]; then
ohair@494 560 OTHER_DIZ_FILE="$OTHER/tmp/java/java/obj64/java.diz"
ohair@494 561 elif [ -f "${OTHER_FILE_BASE}.diz" ]; then
ohair@494 562 OTHER_DIZ_FILE=${OTHER_FILE_BASE}.diz
ohair@494 563 else
ohair@494 564 # Some files, jli.dll, appears twice in the image but only one of
ohair@494 565 # thme has a diz file next to it.
ohair@494 566 OTHER_DIZ_FILE="$($FIND $OTHER_DIR -name $DIZ_NAME | $SED 1q)"
ohair@494 567 if [ ! -f "$OTHER_DIZ_FILE" ]; then
ohair@494 568 # As a last resort, look for diz file in the whole build output
ohair@494 569 # dir.
ohair@494 570 OTHER_DIZ_FILE="$($FIND $OTHER -name $DIZ_NAME | $SED 1q)"
ohair@494 571 fi
ohair@494 572 fi
ohair@494 573 if [ -n "$OTHER_DIZ_FILE" ]; then
ohair@494 574 $MKDIR -p $FILE_WORK_DIR/other
ohair@494 575 (cd $FILE_WORK_DIR/other ; $UNARCHIVE -o $OTHER_DIZ_FILE)
ohair@494 576 export _NT_SYMBOL_PATH="$FILE_WORK_DIR/other"
ohair@494 577 fi
ohair@494 578 THIS_FILE_BASE=${THIS_FILE/.dll/}
ohair@494 579 THIS_FILE_BASE=${THIS_FILE_BASE/.exe/}
ohair@494 580 if [ -f "${THIS_FILE/.dll/}.diz" ]; then
ohair@494 581 THIS_DIZ_FILE=${THIS_FILE/.dll/}.diz
ohair@494 582 else
ohair@494 583 THIS_DIZ_FILE="$($FIND $THIS_DIR -name $DIZ_NAME | $SED 1q)"
ohair@494 584 if [ ! -f "$THIS_DIZ_FILE" ]; then
ohair@494 585 # As a last resort, look for diz file in the whole build output
ohair@494 586 # dir.
ohair@494 587 THIS_DIZ_FILE="$($FIND $THIS -name $DIZ_NAME | $SED 1q)"
ohair@494 588 fi
ohair@494 589 fi
ohair@494 590 if [ -n "$THIS_DIZ_FILE" ]; then
ohair@494 591 $MKDIR -p $FILE_WORK_DIR/this
ohair@494 592 (cd $FILE_WORK_DIR/this ; $UNARCHIVE -o $THIS_DIZ_FILE)
ohair@494 593 export _NT_SYMBOL_PATH="$_NT_SYMBOL_PATH;$FILE_WORK_DIR/this"
ohair@494 594 fi
ohair@494 595 fi
ohair@494 596
ohair@494 597 if [ -z "$SKIP_BIN_DIFF" ]; then
ohair@494 598 if cmp $OTHER_FILE $THIS_FILE > /dev/null; then
ohair@494 599 # The files were bytewise identical.
ohair@494 600 if [ -n "$VERBOSE" ]; then
ohair@494 601 echo " : : : : : $BIN_FILE"
ohair@494 602 fi
ohair@494 603 return 0
ohair@494 604 fi
ohair@494 605 BIN_MSG=" diff "
ohair@494 606 if [[ "$ACCEPTED_BIN_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 607 DIFF_BIN=true
ohair@494 608 if [[ "$KNOWN_BIN_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 609 BIN_MSG="*$BIN_MSG*"
ohair@494 610 REGRESSIONS=true
ohair@494 611 else
ohair@494 612 BIN_MSG=" $BIN_MSG "
ohair@494 613 fi
ohair@494 614 else
ohair@494 615 BIN_MSG="($BIN_MSG)"
ohair@494 616 DIFF_BIN=
ohair@494 617 fi
ohair@494 618 fi
ohair@494 619
ohair@494 620 if [ -n "$STAT" ]; then
ohair@494 621 THIS_SIZE=$($STAT $STAT_PRINT_SIZE "$THIS_FILE")
ohair@494 622 OTHER_SIZE=$($STAT $STAT_PRINT_SIZE "$OTHER_FILE")
ohair@494 623 else
ohair@494 624 THIS_SIZE=$(ls -l "$THIS_FILE" | awk '{ print $5 }')
ohair@494 625 OTHER_SIZE=$(ls -l "$OTHER_FILE" | awk '{ print $5 }')
ohair@494 626 fi
ohair@494 627 if [ $THIS_SIZE -ne $OTHER_SIZE ]; then
ohair@494 628 DIFF_SIZE_NUM=$($EXPR $THIS_SIZE - $OTHER_SIZE)
ohair@494 629 DIFF_SIZE_REL=$($EXPR $THIS_SIZE \* 100 / $OTHER_SIZE)
ohair@494 630 SIZE_MSG=$($PRINTF "%3d%% %4d" $DIFF_SIZE_REL $DIFF_SIZE_NUM)
tbell@510 631 if [[ "$ACCEPTED_SMALL_SIZE_DIFF" = *"$BIN_FILE"* ]] && [ "$DIFF_SIZE_REL" -gt 98 ] \
tbell@510 632 && [ "$DIFF_SIZE_REL" -lt 102 ]; then
ohair@494 633 SIZE_MSG="($SIZE_MSG)"
ohair@494 634 DIFF_SIZE=
tbell@510 635 elif [ "$OPENJDK_TARGET_OS" = "windows" ] \
tbell@510 636 && [[ "$ACCEPTED_SMALL_SIZE_DIFF" = *"$BIN_FILE"* ]] \
tbell@510 637 && [ "$DIFF_SIZE_NUM" = 512 ]; then
tbell@510 638 # On windows, size of binaries increase in 512 increments.
tbell@510 639 SIZE_MSG="($SIZE_MSG)"
tbell@510 640 DIFF_SIZE=
tbell@510 641 elif [ "$OPENJDK_TARGET_OS" = "windows" ] \
tbell@510 642 && [[ "$ACCEPTED_SMALL_SIZE_DIFF" = *"$BIN_FILE"* ]] \
tbell@510 643 && [ "$DIFF_SIZE_NUM" = -512 ]; then
ohair@494 644 # On windows, size of binaries increase in 512 increments.
ohair@494 645 SIZE_MSG="($SIZE_MSG)"
ohair@494 646 DIFF_SIZE=
ohair@494 647 else
ohair@494 648 if [[ "$ACCEPTED_SIZE_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 649 DIFF_SIZE=true
ohair@494 650 if [[ "$KNOWN_SIZE_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 651 SIZE_MSG="*$SIZE_MSG*"
ohair@494 652 REGRESSIONS=true
ohair@494 653 else
ohair@494 654 SIZE_MSG=" $SIZE_MSG "
ohair@494 655 fi
ohair@494 656 else
ohair@494 657 SIZE_MSG="($SIZE_MSG)"
ohair@494 658 DIFF_SIZE=
ohair@494 659 fi
ohair@494 660 fi
ohair@494 661 else
ohair@494 662 SIZE_MSG=" "
ohair@494 663 DIFF_SIZE=
ohair@494 664 if [[ "$KNOWN_SIZE_DIFF $ACCEPTED_SIZE_DIFF" = *"$BIN_FILE"* ]]; then
ohair@494 665 SIZE_MSG=" ! "
ohair@494 666 fi
ohair@494 667 fi
ohair@494 668
ohair@494 669 if [[ "$SORT_SYMBOLS" = *"$BIN_FILE"* ]]; then
ohair@494 670 SYM_SORT_CMD="sort"
ohair@494 671 else
ohair@494 672 SYM_SORT_CMD="cat"
ohair@494 673 fi
ohair@494 674
ohair@494 675 # Check symbols
ohair@494 676 if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
ohair@494 677 # The output from dumpbin on windows differs depending on if the debug symbol
ohair@494 678 # files are still around at the location the binary is pointing too. Need
ohair@494 679 # to filter out that extra information.
ohair@494 680 $DUMPBIN -exports $OTHER_FILE | $GREP -E '^ +[0-9A-F]+ +[0-9A-F]+ [0-9A-F]+' | sed 's/ = .*//g' | cut -c27- | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.other
ohair@494 681 $DUMPBIN -exports $THIS_FILE | $GREP -E '^ +[0-9A-F]+ +[0-9A-F]+ [0-9A-F]+' | sed 's/ = .*//g' | cut -c27- | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.this
ohair@494 682 elif [ "$OPENJDK_TARGET_OS" = "solaris" ]; then
ohair@494 683 # Some symbols get seemingly random 15 character prefixes. Filter them out.
ohair@494 684 $NM -a $ORIG_OTHER_FILE 2> /dev/null | $GREP -v $NAME | $AWK '{print $2, $3, $4, $5}' | $SED 's/^\([a-zA-Z] [\.\$]\)[a-zA-Z0-9_\$]\{15,15\}\./\1./g' | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.other
ohair@494 685 $NM -a $ORIG_THIS_FILE 2> /dev/null | $GREP -v $NAME | $AWK '{print $2, $3, $4, $5}' | $SED 's/^\([a-zA-Z] [\.\$]\)[a-zA-Z0-9_\$]\{15,15\}\./\1./g' | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.this
ohair@494 686 else
ohair@494 687 $NM -a $ORIG_OTHER_FILE 2> /dev/null | $GREP -v $NAME | $AWK '{print $2, $3, $4, $5}' | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.other
ohair@494 688 $NM -a $ORIG_THIS_FILE 2> /dev/null | $GREP -v $NAME | $AWK '{print $2, $3, $4, $5}' | $SYM_SORT_CMD > $WORK_FILE_BASE.symbols.this
ohair@494 689 fi
ohair@494 690
ohair@494 691 LANG=C $DIFF $WORK_FILE_BASE.symbols.other $WORK_FILE_BASE.symbols.this > $WORK_FILE_BASE.symbols.diff
ohair@494 692 if [ -s $WORK_FILE_BASE.symbols.diff ]; then
ohair@494 693 SYM_MSG=" diff "
ohair@494 694 if [[ "$ACCEPTED_SYM_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 695 DIFF_SYM=true
ohair@494 696 if [[ "$KNOWN_SYM_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 697 SYM_MSG="*$SYM_MSG*"
ohair@494 698 REGRESSIONS=true
ohair@494 699 else
ohair@494 700 SYM_MSG=" $SYM_MSG "
ohair@494 701 fi
ohair@494 702 else
ohair@494 703 SYM_MSG="($SYM_MSG)"
ohair@494 704 DIFF_SYM=
ohair@494 705 fi
ohair@494 706 else
ohair@494 707 SYM_MSG=" "
ohair@494 708 DIFF_SYM=
ohair@494 709 if [[ "$KNOWN_SYM_DIFF $ACCEPTED_SYM_DIFF" = *"$BIN_FILE"* ]]; then
ohair@494 710 SYM_MSG=" ! "
ohair@494 711 fi
ohair@494 712 fi
ohair@494 713
ohair@494 714 # Check dependencies
ohair@494 715 if [ -n "$LDD_CMD" ]; then
erikj@502 716 (cd $FILE_WORK_DIR && $CP $OTHER_FILE . && $LDD_CMD $NAME 2>/dev/null | $AWK '{ print $1;}' | $SORT | $TEE $WORK_FILE_BASE.deps.other | $UNIQ > $WORK_FILE_BASE.deps.other.uniq)
erikj@502 717 (cd $FILE_WORK_DIR && $CP $THIS_FILE . && $LDD_CMD $NAME 2</dev/null | $AWK '{ print $1;}' | $SORT | $TEE $WORK_FILE_BASE.deps.this | $UNIQ > $WORK_FILE_BASE.deps.this.uniq)
ohair@494 718 (cd $FILE_WORK_DIR && $RM -f $NAME)
ohair@494 719
ohair@494 720 LANG=C $DIFF $WORK_FILE_BASE.deps.other $WORK_FILE_BASE.deps.this > $WORK_FILE_BASE.deps.diff
ohair@494 721 LANG=C $DIFF $WORK_FILE_BASE.deps.other.uniq $WORK_FILE_BASE.deps.this.uniq > $WORK_FILE_BASE.deps.diff.uniq
ohair@494 722
ohair@494 723 if [ -s $WORK_FILE_BASE.deps.diff ]; then
ohair@494 724 if [ -s $WORK_FILE_BASE.deps.diff.uniq ]; then
ohair@494 725 DEP_MSG=" diff "
ohair@494 726 else
ohair@494 727 DEP_MSG=" redun "
ohair@494 728 fi
ohair@494 729 if [[ "$ACCEPTED_DEP_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 730 DIFF_DEP=true
ohair@494 731 if [[ "$KNOWN_DEP_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 732 DEP_MSG="*$DEP_MSG*"
ohair@494 733 REGRESSIONS=true
ohair@494 734 else
ohair@494 735 DEP_MSG=" $DEP_MSG "
ohair@494 736 fi
ohair@494 737 else
ohair@494 738 DEP_MSG="($DEP_MSG)"
ohair@494 739 DIFF_DEP=
ohair@494 740 fi
ohair@494 741 else
ohair@494 742 DEP_MSG=" "
ohair@494 743 DIFF_DEP=
ohair@494 744 if [[ "$KNOWN_DEP_DIFF $ACCEPTED_DEP_DIFF" = *"$BIN_FILE"* ]]; then
ohair@494 745 DEP_MSG=" ! "
ohair@494 746 fi
ohair@494 747 fi
ohair@494 748 else
ohair@494 749 DEP_MSG=" - "
ohair@494 750 fi
ohair@494 751
ohair@494 752 # Compare fulldump output
ohair@494 753 if [ -n "$FULLDUMP_CMD" ] && [ -z "$SKIP_FULLDUMP_DIFF" ]; then
ohair@494 754 $FULLDUMP_CMD $OTHER_FILE > $WORK_FILE_BASE.fulldump.other 2>&1
ohair@494 755 $FULLDUMP_CMD $THIS_FILE > $WORK_FILE_BASE.fulldump.this 2>&1
ohair@494 756 LANG=C $DIFF $WORK_FILE_BASE.fulldump.other $WORK_FILE_BASE.fulldump.this > $WORK_FILE_BASE.fulldump.diff
ohair@494 757
ohair@494 758 if [ -s $WORK_FILE_BASE.fulldump.diff ]; then
ohair@494 759 ELF_DIFF_SIZE=$(ls -n $WORK_FILE_BASE.fulldump.diff | awk '{print $5}')
ohair@494 760 ELF_MSG=$($PRINTF "%8d" $ELF_DIFF_SIZE)
ohair@494 761 if [[ "$ACCEPTED_ELF_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 762 DIFF_ELF=true
ohair@494 763 if [[ "$KNOWN_ELF_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 764 ELF_MSG="*$ELF_MSG*"
ohair@494 765 REGRESSIONS=true
ohair@494 766 else
ohair@494 767 ELF_MSG=" $ELF_MSG "
ohair@494 768 fi
ohair@494 769 else
ohair@494 770 ELF_MSG="($ELF_MSG)"
ohair@494 771 DIFF_ELF=
ohair@494 772 fi
ohair@494 773 else
ohair@494 774 ELF_MSG=" "
ohair@494 775 DIFF_ELF=
ohair@494 776 if [[ "$KNOWN_DEP_DIFF $ACCEPTED_DEP_DIFF" = *"$BIN_FILE"* ]]; then
ohair@494 777 ELF_MSG=" ! "
ohair@494 778 fi
ohair@494 779 fi
ohair@494 780 fi
ohair@494 781
ohair@494 782 # Compare disassemble output
ohair@494 783 if [ -n "$DIS_CMD" ] && [ -z "$SKIP_DIS_DIFF" ]; then
ohair@494 784 if [ -z "$DIS_DIFF_FILTER" ]; then
ohair@494 785 DIS_DIFF_FILTER="$CAT"
ohair@494 786 fi
ohair@494 787 $DIS_CMD $OTHER_FILE | $GREP -v $NAME | $DIS_DIFF_FILTER > $WORK_FILE_BASE.dis.other 2>&1
ohair@494 788 $DIS_CMD $THIS_FILE | $GREP -v $NAME | $DIS_DIFF_FILTER > $WORK_FILE_BASE.dis.this 2>&1
ohair@494 789
ohair@494 790 LANG=C $DIFF $WORK_FILE_BASE.dis.other $WORK_FILE_BASE.dis.this > $WORK_FILE_BASE.dis.diff
ohair@494 791
ohair@494 792 if [ -s $WORK_FILE_BASE.dis.diff ]; then
ohair@494 793 DIS_DIFF_SIZE=$(ls -n $WORK_FILE_BASE.dis.diff | awk '{print $5}')
ohair@494 794 DIS_MSG=$($PRINTF "%8d" $DIS_DIFF_SIZE)
ohair@494 795 if [[ "$ACCEPTED_DIS_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 796 DIFF_DIS=true
ohair@494 797 if [[ "$KNOWN_DIS_DIFF" != *"$BIN_FILE"* ]]; then
ohair@494 798 DIS_MSG="*$DIS_MSG*"
ohair@494 799 REGRESSIONS=true
ohair@494 800 else
ohair@494 801 DIS_MSG=" $DIS_MSG "
ohair@494 802 fi
ohair@494 803 else
ohair@494 804 DIS_MSG="($DIS_MSG)"
ohair@494 805 DIFF_DIS=
ohair@494 806 fi
ohair@494 807 else
ohair@494 808 DIS_MSG=" "
ohair@494 809 DIFF_DIS=
ohair@494 810 if [[ "$KNOWN_DEP_DIFF $ACCEPTED_DEP_DIFF" = *"$BIN_FILE"* ]]; then
ohair@494 811 DIS_MSG=" ! "
ohair@494 812 fi
ohair@494 813 fi
ohair@494 814 fi
ohair@494 815
ohair@494 816
ohair@494 817 if [ -n "$DIFF_BIN$DIFF_SIZE$DIFF_SYM$DIFF_DEP$DIFF_ELF$DIFF_DIS" ] || [ -n "$VERBOSE" ]; then
ohair@494 818 if [ -n "$BIN_MSG" ]; then echo -n "$BIN_MSG:"; fi
ohair@494 819 if [ -n "$SIZE_MSG" ]; then echo -n "$SIZE_MSG:"; fi
ohair@494 820 if [ -n "$SYM_MSG" ]; then echo -n "$SYM_MSG:"; fi
ohair@494 821 if [ -n "$DEP_MSG" ]; then echo -n "$DEP_MSG:"; fi
ohair@494 822 if [ -n "$ELF_MSG" ]; then echo -n "$ELF_MSG:"; fi
ohair@494 823 if [ -n "$DIS_MSG" ]; then echo -n "$DIS_MSG:"; fi
ohair@494 824 echo " $BIN_FILE"
ohair@494 825 if [ "$SHOW_DIFFS" = "true" ]; then
ohair@494 826 if [ -s "$WORK_FILE_BASE.symbols.diff" ]; then
ohair@494 827 echo "Symbols diff:"
ohair@494 828 $CAT $WORK_FILE_BASE.symbols.diff
ohair@494 829 fi
ohair@494 830 if [ -s "$WORK_FILE_BASE.deps.diff" ]; then
ohair@494 831 echo "Deps diff:"
ohair@494 832 $CAT $WORK_FILE_BASE.deps.diff
ohair@494 833 fi
ohair@494 834 if [ -s "$WORK_FILE_BASE.fulldump.diff" ]; then
ohair@494 835 echo "Fulldump diff:"
ohair@494 836 $CAT $WORK_FILE_BASE.fulldump.diff
ohair@494 837 fi
ohair@494 838 if [ -s "$WORK_FILE_BASE.dis.diff" ]; then
ohair@494 839 echo "Disassembly diff:"
ohair@494 840 $CAT $WORK_FILE_BASE.dis.diff
ohair@494 841 fi
ohair@494 842 fi
ohair@494 843 return 1
ohair@494 844 fi
ohair@494 845 return 0
ohair@494 846 }
ohair@494 847
ohair@494 848 ##########################################################################################
ohair@494 849 # Print binary diff header
ohair@494 850
ohair@494 851 print_binary_diff_header() {
ohair@494 852 if [ -z "$SKIP_BIN_DIFF" ]; then echo -n " Binary :"; fi
ohair@494 853 if [ -z "$SKIP_SIZE_DIFF" ]; then echo -n " Size :"; fi
ohair@494 854 if [ -z "$SKIP_SYM_DIFF" ]; then echo -n " Symbols :"; fi
ohair@494 855 if [ -z "$SKIP_DEP_DIFF" ]; then echo -n " Deps :"; fi
ohair@494 856 if [ -z "$SKIP_FULLDUMP_DIFF" ]; then echo -n " Fulldump :"; fi
ohair@494 857 if [ -z "$SKIP_DIS_DIFF" ]; then echo -n " Disass :"; fi
ohair@494 858 echo
ohair@494 859 }
ohair@494 860
ohair@494 861 ##########################################################################################
ohair@494 862 # Compare all libraries
ohair@494 863
ohair@494 864 compare_all_libs() {
ohair@494 865 THIS_DIR=$1
ohair@494 866 OTHER_DIR=$2
ohair@494 867 WORK_DIR=$3
ohair@494 868
tbell@510 869 LIBS=$(cd $THIS_DIR && $FIND . -type f \( -name 'lib*.so' -o -name '*.dylib' -o -name '*.dll' -o -name 'JavaControlPanel' \) | $SORT | $FILTER)
ohair@494 870
ohair@494 871 if [ -n "$LIBS" ]; then
ohair@494 872 echo Libraries...
ohair@494 873 print_binary_diff_header
ohair@494 874 for l in $LIBS; do
ohair@494 875 if [ -f "$OTHER_DIR/$l" ]; then
ohair@494 876 compare_bin_file $THIS_DIR $OTHER_DIR $WORK_DIR $l
ohair@494 877 if [ "$?" != "0" ]; then
ohair@494 878 return_value=1
ohair@494 879 fi
ohair@494 880 fi
ohair@494 881 done
ohair@494 882 fi
ohair@494 883
ohair@494 884 return $return_value
ohair@494 885 }
ohair@494 886
ohair@494 887 ##########################################################################################
ohair@494 888 # Compare all executables
ohair@494 889
ohair@494 890 compare_all_execs() {
ohair@494 891 THIS_DIR=$1
ohair@494 892 OTHER_DIR=$2
ohair@494 893 WORK_DIR=$3
ohair@494 894
ohair@494 895 if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
ohair@494 896 EXECS=$(cd $THIS_DIR && $FIND . -type f -name '*.exe' | $SORT | $FILTER)
ohair@494 897 else
erikj@502 898 EXECS=$(cd $THIS_DIR && $FIND . -name db -prune -o -type f -perm -100 \! \
erikj@502 899 \( -name '*.so' -o -name '*.dylib' -o -name '*.dll' -o -name '*.cgi' \
erikj@502 900 -o -name '*.jar' -o -name '*.diz' -o -name 'jcontrol' -o -name '*.properties' \
erikj@502 901 -o -name '*.data' -o -name '*.bfc' -o -name '*.src' -o -name '*.txt' \
erikj@502 902 -o -name '*.cfg' -o -name 'meta-index' -o -name '*.properties.ja' \
erikj@502 903 -o -name 'classlist' \) | $SORT | $FILTER)
ohair@494 904 fi
ohair@494 905
ohair@494 906 if [ -n "$EXECS" ]; then
ohair@494 907 echo Executables...
ohair@494 908 print_binary_diff_header
ohair@494 909 for e in $EXECS; do
ohair@494 910 if [ -f "$OTHER_DIR/$e" ]; then
ohair@494 911 compare_bin_file $THIS_DIR $OTHER_DIR $WORK_DIR $e
ohair@494 912 if [ "$?" != "0" ]; then
ohair@494 913 return_value=1
ohair@494 914 fi
ohair@494 915 fi
ohair@494 916 done
ohair@494 917 fi
ohair@494 918
ohair@494 919 return $return_value
ohair@494 920 }
ohair@494 921
ohair@494 922 ##########################################################################################
ohair@494 923 # Initiate configuration
ohair@494 924
ohair@494 925 COMPARE_ROOT=/tmp/cimages.$USER
ohair@494 926 $MKDIR -p $COMPARE_ROOT
ohair@494 927 if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
ohair@494 928 if [ "$(uname -o)" = "Cygwin" ]; then
ohair@494 929 COMPARE_ROOT=$(cygpath -msa $COMPARE_ROOT)
ohair@494 930 fi
ohair@494 931 fi
ohair@494 932
ohair@494 933 THIS="$( cd "$( dirname "$0" )" && pwd )"
ohair@494 934 echo "$THIS"
ohair@494 935 THIS_SCRIPT="$0"
ohair@494 936
ohair@494 937 if [ -z "$1" ] || [ "$1" = "-h" ] || [ "$1" = "-?" ] || [ "$1" = "/h" ] || [ "$1" = "/?" ] || [ "$1" = "-help" ] || [ "$1" = "--help" ]; then
ohair@494 938 echo "bash ./compare.sh [OPTIONS] [FILTER]"
ohair@494 939 echo ""
ohair@494 940 echo "-all Compare all files in all known ways"
ohair@494 941 echo "-names Compare the file names and directory structure"
ohair@494 942 echo "-perms Compare the permission bits on all files and directories"
ohair@494 943 echo "-types Compare the output of the file command on all files"
ohair@494 944 echo "-general Compare the files not convered by the specialized comparisons"
ohair@494 945 echo "-zips Compare the contents of all zip files"
ohair@494 946 echo "-jars Compare the contents of all jar files"
ohair@494 947 echo "-libs Compare all native libraries"
ohair@494 948 echo "-execs Compare all executables"
ohair@494 949 echo "-v Verbose output, does not hide known differences"
ohair@494 950 echo "-vv More verbose output, shows diff output of all comparisons"
ohair@494 951 echo "-o [OTHER] Compare with build in other directory. Will default to the old build directory"
ohair@494 952 echo ""
ohair@494 953 echo "[FILTER] List filenames in the image to compare, works for jars, zips, libs and execs"
ohair@494 954 echo "Example:"
ohair@494 955 echo "bash ./common/bin/compareimages.sh CodePointIM.jar"
ohair@494 956 exit 10
ohair@494 957 fi
ohair@494 958
ohair@494 959 CMP_NAMES=false
ohair@494 960 CMP_PERMS=false
ohair@494 961 CMP_TYPES=false
ohair@494 962 CMP_GENERAL=false
ohair@494 963 CMP_ZIPS=false
ohair@494 964 CMP_JARS=false
ohair@494 965 CMP_LIBS=false
ohair@494 966 CMP_EXECS=false
ohair@494 967
ohair@494 968 while [ -n "$1" ]; do
ohair@494 969 case "$1" in
ohair@494 970 -v)
ohair@494 971 VERBOSE=true
ohair@494 972 ;;
ohair@494 973 -vv)
ohair@494 974 VERBOSE=true
ohair@494 975 SHOW_DIFFS=true
ohair@494 976 ;;
ohair@494 977 -o)
ohair@494 978 OTHER="$2"
ohair@494 979 shift
ohair@494 980 ;;
ohair@494 981 -all)
ohair@494 982 CMP_NAMES=true
ohair@494 983 if [ "$OPENJDK_TARGET_OS" != "windows" ]; then
ohair@494 984 CMP_PERMS=true
ohair@494 985 fi
ohair@494 986 CMP_TYPES=true
ohair@494 987 CMP_GENERAL=true
ohair@494 988 CMP_ZIPS=true
ohair@494 989 CMP_JARS=true
ohair@494 990 CMP_LIBS=true
ohair@494 991 CMP_EXECS=true
ohair@494 992 ;;
ohair@494 993 -names)
ohair@494 994 CMP_NAMES=true
ohair@494 995 ;;
ohair@494 996 -perms)
ohair@494 997 CMP_PERMS=true
ohair@494 998 ;;
ohair@494 999 -types)
ohair@494 1000 CMP_TYPES=true
ohair@494 1001 ;;
ohair@494 1002 -general)
ohair@494 1003 CMP_GENERAL=true
ohair@494 1004 ;;
ohair@494 1005 -zips)
ohair@494 1006 CMP_ZIPS=true
ohair@494 1007 ;;
ohair@494 1008 -jars)
ohair@494 1009 CMP_JARS=true
ohair@494 1010 ;;
ohair@494 1011 -libs)
ohair@494 1012 CMP_LIBS=true
ohair@494 1013 ;;
ohair@494 1014 -execs)
ohair@494 1015 CMP_EXECS=true
ohair@494 1016 ;;
ohair@494 1017 *)
ohair@494 1018 CMP_NAMES=false
ohair@494 1019 CMP_PERMS=false
ohair@494 1020 CMP_TYPES=false
ohair@494 1021 CMP_ZIPS=true
ohair@494 1022 CMP_JARS=true
ohair@494 1023 CMP_LIBS=true
ohair@494 1024 CMP_EXECS=true
ohair@494 1025
ohair@494 1026 if [ -z "$FILTER" ]; then
ohair@494 1027 FILTER="$GREP"
ohair@494 1028 fi
ohair@494 1029 FILTER="$FILTER -e $1"
ohair@494 1030 ;;
ohair@494 1031 esac
ohair@494 1032 shift
ohair@494 1033 done
ohair@494 1034
ohair@494 1035 if [ "$CMP_NAMES" = "false" ] && [ "$CMP_TYPES" = "false" ] && [ "$CMP_PERMS" = "false" ] && [ "$CMP_GENERAL" = "false" ] && [ "$CMP_ZIPS" = "false" ] && [ "$CMP_JARS" = "false" ] && [ "$CMP_LIBS" = "false" ] && [ "$CMP_EXECS" = "false" ]; then
ohair@494 1036 CMP_NAMES=true
ohair@494 1037 CMP_PERMS=true
ohair@494 1038 CMP_TYPES=true
ohair@494 1039 CMP_GENERAL=true
ohair@494 1040 CMP_ZIPS=true
ohair@494 1041 CMP_JARS=true
ohair@494 1042 CMP_LIBS=true
ohair@494 1043 CMP_EXECS=true
ohair@494 1044 fi
ohair@494 1045
ohair@494 1046 if [ -z "$FILTER" ]; then
ohair@494 1047 FILTER="$CAT"
ohair@494 1048 fi
ohair@494 1049
ohair@494 1050 if [ -z "$OTHER" ]; then
ohair@494 1051 OTHER="$THIS/../$LEGACY_BUILD_DIR"
ohair@494 1052 if [ -d "$OTHER" ]; then
ohair@494 1053 OTHER="$( cd "$OTHER" && pwd )"
ohair@494 1054 else
ohair@494 1055 echo "Default old build directory does not exist:"
ohair@494 1056 echo "$OTHER"
ohair@494 1057 exit 1
ohair@494 1058 fi
ohair@494 1059 echo "Comparing to default old build:"
ohair@494 1060 echo "$OTHER"
ohair@494 1061 echo
ohair@494 1062 else
ohair@494 1063 if [ ! -d "$OTHER" ]; then
ohair@494 1064 echo "Other build directory does not exist:"
ohair@494 1065 echo "$OTHER"
ohair@494 1066 exit 1
ohair@494 1067 fi
ohair@494 1068 OTHER="$( cd "$OTHER" && pwd )"
ohair@494 1069 echo "Comparing to:"
ohair@494 1070 echo "$OTHER"
ohair@494 1071 echo
ohair@494 1072 fi
ohair@494 1073
ohair@494 1074
ohair@494 1075 # Figure out the layout of the this build. Which kinds of images have been produced
ohair@494 1076 if [ -d "$THIS/deploy/j2sdk-image" ]; then
ohair@494 1077 THIS_J2SDK="$THIS/deploy/j2sdk-image"
ohair@494 1078 THIS_J2RE="$THIS/deploy/j2re-image"
erikj@502 1079 echo "Comparing deploy images"
ohair@494 1080 elif [ -d "$THIS/images/j2sdk-image" ]; then
ohair@494 1081 THIS_J2SDK="$THIS/images/j2sdk-image"
ohair@494 1082 THIS_J2RE="$THIS/images/j2re-image"
ohair@494 1083 fi
ohair@494 1084 if [ -d "$THIS/images/j2sdk-overlay-image" ]; then
ohair@494 1085 THIS_J2SDK_OVERLAY="$THIS/images/j2sdk-overlay-image"
ohair@494 1086 THIS_J2RE_OVERLAY="$THIS/images/j2re-overlay-image"
ohair@494 1087 fi
ohair@494 1088
ohair@494 1089 if [ -d "$THIS/images/j2sdk-bundle" ]; then
ohair@494 1090 THIS_J2SDK_BUNDLE="$THIS/images/j2sdk-bundle"
ohair@494 1091 THIS_J2RE_BUNDLE="$THIS/images/j2re-bundle"
ohair@494 1092 fi
ohair@494 1093
ohair@494 1094 # Figure out the layout of the other build (old or new, normal or overlay image)
ohair@494 1095 if [ -d "$OTHER/j2sdk-image" ]; then
ohair@494 1096 if [ -f "$OTHER/j2sdk-image/LICENSE" ]; then
ohair@494 1097 OTHER_J2SDK="$OTHER/j2sdk-image"
ohair@494 1098 OTHER_J2RE="$OTHER/j2re-image"
ohair@494 1099 else
ohair@494 1100 OTHER_J2SDK_OVERLAY="$OTHER/j2sdk-image"
ohair@494 1101 OTHER_J2RE_OVERLAY="$OTHER/j2re-image"
ohair@494 1102 fi
ohair@494 1103
ohair@494 1104 fi
ohair@494 1105
ohair@494 1106 if [ -d "$OTHER/j2sdk-bundle" ]; then
ohair@494 1107 OTHER_J2SDK_BUNDLE="$OTHER/j2sdk-bundle"
ohair@494 1108 OTHER_J2RE_BUNDLE="$OTHER/j2re-bundle"
ohair@494 1109 elif [ -d "$OTHER/images/j2sdk-bundle" ]; then
ohair@494 1110 OTHER_J2SDK_BUNDLE="$OTHER/images/j2sdk-bundle"
ohair@494 1111 OTHER_J2RE_BUNDLE="$OTHER/images/j2re-bundle"
ohair@494 1112 fi
ohair@494 1113
ohair@494 1114 if [ -z "$THIS_J2SDK" ] || [ -z "$THIS_J2RE" ]; then
ohair@494 1115 if [ -z "$THIS_J2SDK_OVERLAY" ]; then
ohair@494 1116 echo "Cannot locate images for this build. Are you sure you have run 'make images'?"
ohair@494 1117 exit 1
ohair@494 1118 fi
ohair@494 1119 fi
ohair@494 1120
ohair@494 1121 if [ -z "$OTHER_J2SDK" ] && [ -n "$OTHER_J2SDK_OVERLAY" ] && [ -z "$THIS_J2SDK_OVERLAY" ]; then
ohair@494 1122 echo "OTHER build only has an overlay image while this build does not. Nothing to compare!"
ohair@494 1123 exit 1
ohair@494 1124 fi
ohair@494 1125
ohair@494 1126 if [ -z "$THIS_J2SDK_BUNDLE" ] && [ -n "$OTHER_J2SDK_BUNDLE" ]; then
ohair@494 1127 echo "WARNING! OTHER build has bundles built while this build does not."
ohair@494 1128 echo "Skipping bundle compare!"
ohair@494 1129 fi
ohair@494 1130
erikj@518 1131 if [ -d "$THIS/docs" ]; then
erikj@518 1132 THIS_DOCS="$THIS/docs"
erikj@518 1133 fi
erikj@518 1134
erikj@518 1135 if [ -d "$OTHER/docs" ]; then
erikj@518 1136 OTHER_DOCS="$OTHER/docs"
erikj@518 1137 fi
erikj@518 1138
erikj@518 1139 if [ -z "$THIS_DOCS" ]; then
erikj@518 1140 echo "WARNING! Docs haven't been built and won't be compared."
erikj@518 1141 fi
erikj@518 1142
erikj@518 1143 if [ -z "$OTHER_DOCS" ]; then
erikj@518 1144 echo "WARNING! Other build doesn't contain docs, skipping doc compare."
erikj@518 1145 fi
erikj@518 1146
ohair@494 1147 ##########################################################################################
ohair@494 1148 # Do the work
ohair@494 1149
ohair@494 1150 if [ "$CMP_NAMES" = "true" ]; then
ohair@494 1151 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1152 echo -n "J2SDK "
ohair@494 1153 compare_dirs $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1154 echo -n "J2RE "
ohair@494 1155 compare_dirs $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
ohair@494 1156
ohair@494 1157 echo -n "J2SDK "
ohair@494 1158 compare_files $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1159 echo -n "J2RE "
ohair@494 1160 compare_files $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
ohair@494 1161 fi
ohair@494 1162 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1163 echo -n "J2SDK Overlay "
ohair@494 1164 compare_dirs $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1165 echo -n "J2RE Overlay "
ohair@494 1166 compare_dirs $THIS_J2RE_OVERLAY $OTHER_J2RE_OVERLAY $COMPARE_ROOT/j2re-overlay
ohair@494 1167
ohair@494 1168 echo -n "J2SDK Overlay "
ohair@494 1169 compare_files $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1170 echo -n "J2RE Overlay "
ohair@494 1171 compare_files $THIS_J2RE_OVERLAY $OTHER_J2RE_OVERLAY $COMPARE_ROOT/j2re-overlay
ohair@494 1172 fi
ohair@494 1173 if [ -n "$THIS_J2SDK_BUNDLE" ] && [ -n "$OTHER_J2SDK_BUNDLE" ]; then
ohair@494 1174 echo -n "J2SDK Bundle "
ohair@494 1175 compare_dirs $THIS_J2SDK_BUNDLE $OTHER_J2SDK_BUNDLE $COMPARE_ROOT/j2sdk-bundle
ohair@494 1176 echo -n "J2RE Bundle "
ohair@494 1177 compare_dirs $THIS_J2RE_BUNDLE $OTHER_J2RE_BUNDLE $COMPARE_ROOT/j2re-bundle
ohair@494 1178
ohair@494 1179 echo -n "J2SDK Bundle "
ohair@494 1180 compare_files $THIS_J2SDK_BUNDLE $OTHER_J2SDK_BUNDLE $COMPARE_ROOT/j2sdk-bundle
ohair@494 1181 echo -n "J2RE Bundle "
ohair@494 1182 compare_files $THIS_J2RE_BUNDLE $OTHER_J2RE_BUNDLE $COMPARE_ROOT/j2re-bundle
ohair@494 1183 fi
erikj@518 1184 if [ -n "$THIS_DOCS" ] && [ -n "$OTHER_DOCS" ]; then
erikj@518 1185 echo -n "Docs "
erikj@518 1186 compare_dirs $THIS_DOCS $OTHER_DOCS $COMPARE_ROOT/docs
erikj@518 1187 echo -n "Docs "
erikj@518 1188 compare_files $THIS_DOCS $OTHER_DOCS $COMPARE_ROOT/docs
erikj@518 1189 fi
ohair@494 1190 fi
ohair@494 1191
ohair@494 1192 if [ "$CMP_PERMS" = "true" ]; then
ohair@494 1193 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1194 echo -n "J2SDK "
ohair@494 1195 compare_permissions $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1196 echo -n "J2RE "
ohair@494 1197 compare_permissions $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
ohair@494 1198 fi
ohair@494 1199 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1200 echo -n "J2SDK Overlay "
ohair@494 1201 compare_permissions $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1202 echo -n "J2RE Overlay "
ohair@494 1203 compare_permissions $THIS_J2RE_OVERLAY $OTHER_J2RE_OVERLAY $COMPARE_ROOT/j2re-overlay
ohair@494 1204 fi
ohair@494 1205 if [ -n "$THIS_J2SDK_BUNDLE" ] && [ -n "$OTHER_J2SDK_BUNDLE" ]; then
ohair@494 1206 echo -n "J2SDK Bundle "
ohair@494 1207 compare_permissions $THIS_J2SDK_BUNDLE $OTHER_J2SDK_BUNDLE $COMPARE_ROOT/j2sdk-bundle
ohair@494 1208 echo -n "J2RE Bundle "
ohair@494 1209 compare_permissions $THIS_J2RE_BUNDLE $OTHER_J2RE_BUNDLE $COMPARE_ROOT/j2re-bundle
ohair@494 1210 fi
ohair@494 1211 fi
ohair@494 1212
ohair@494 1213 if [ "$CMP_TYPES" = "true" ]; then
ohair@494 1214 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1215 echo -n "J2SDK "
ohair@494 1216 compare_file_types $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1217 echo -n "J2RE "
ohair@494 1218 compare_file_types $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
ohair@494 1219 fi
ohair@494 1220 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1221 echo -n "J2SDK Overlay "
ohair@494 1222 compare_file_types $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1223 echo -n "J2RE Overlay "
ohair@494 1224 compare_file_types $THIS_J2RE_OVERLAY $OTHER_J2RE_OVERLAY $COMPARE_ROOT/j2re-overlay
ohair@494 1225 fi
ohair@494 1226 if [ -n "$THIS_J2SDK_BUNDLE" ] && [ -n "$OTHER_J2SDK_BUNDLE" ]; then
ohair@494 1227 echo -n "J2SDK Bundle "
ohair@494 1228 compare_file_types $THIS_J2SDK_BUNDLE $OTHER_J2SDK_BUNDLE $COMPARE_ROOT/j2sdk-bundle
ohair@494 1229 echo -n "J2RE Bundle "
ohair@494 1230 compare_file_types $THIS_J2RE_BUNDLE $OTHER_J2RE_BUNDLE $COMPARE_ROOT/j2re-bundle
ohair@494 1231 fi
ohair@494 1232 fi
ohair@494 1233
ohair@494 1234 if [ "$CMP_GENERAL" = "true" ]; then
ohair@494 1235 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1236 echo -n "J2SDK "
ohair@494 1237 compare_general_files $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1238 echo -n "J2RE "
ohair@494 1239 compare_general_files $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
ohair@494 1240 fi
ohair@494 1241 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1242 echo -n "J2SDK Overlay "
ohair@494 1243 compare_general_files $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1244 echo -n "J2RE Overlay "
ohair@494 1245 compare_general_files $THIS_J2RE_OVERLAY $OTHER_J2RE_OVERLAY $COMPARE_ROOT/j2re-overlay
ohair@494 1246 fi
ohair@494 1247 if [ -n "$THIS_J2SDK_BUNDLE" ] && [ -n "$OTHER_J2SDK_BUNDLE" ]; then
ohair@494 1248 echo -n "J2SDK Bundle "
ohair@494 1249 compare_general_files $THIS_J2SDK_BUNDLE $OTHER_J2SDK_BUNDLE $COMPARE_ROOT/j2sdk-bundle
ohair@494 1250 echo -n "J2RE Bundle "
ohair@494 1251 compare_general_files $THIS_J2RE_BUNDLE $OTHER_J2RE_BUNDLE $COMPARE_ROOT/j2re-bundle
ohair@494 1252 fi
erikj@518 1253 if [ -n "$THIS_DOCS" ] && [ -n "$OTHER_DOCS" ]; then
erikj@518 1254 echo -n "Docs "
erikj@518 1255 compare_general_files $THIS_DOCS $OTHER_DOCS $COMPARE_ROOT/docs
erikj@518 1256 fi
ohair@494 1257 fi
ohair@494 1258
ohair@494 1259 if [ "$CMP_ZIPS" = "true" ]; then
ohair@494 1260 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1261 compare_all_zip_files $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1262 fi
ohair@494 1263 fi
ohair@494 1264
ohair@494 1265 if [ "$CMP_JARS" = "true" ]; then
ohair@494 1266 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1267 compare_all_jar_files $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1268 fi
ohair@494 1269 fi
ohair@494 1270
ohair@494 1271 if [ "$CMP_LIBS" = "true" ]; then
ohair@494 1272 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
tbell@510 1273 echo -n "J2SDK "
ohair@494 1274 compare_all_libs $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
tbell@510 1275 if [ "$OPENJDK_TARGET_OS" = "macosx" ]; then
tbell@510 1276 echo -n "J2RE "
tbell@510 1277 compare_all_libs $THIS_J2RE $OTHER_J2RE $COMPARE_ROOT/j2re
tbell@510 1278 fi
ohair@494 1279 fi
ohair@494 1280 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1281 echo -n "Bundle "
ohair@494 1282 compare_all_libs $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1283 fi
ohair@494 1284 fi
ohair@494 1285
ohair@494 1286 if [ "$CMP_EXECS" = "true" ]; then
ohair@494 1287 if [ -n "$THIS_J2SDK" ] && [ -n "$OTHER_J2SDK" ]; then
ohair@494 1288 compare_all_execs $THIS_J2SDK $OTHER_J2SDK $COMPARE_ROOT/j2sdk
ohair@494 1289 fi
ohair@494 1290 if [ -n "$THIS_J2SDK_OVERLAY" ] && [ -n "$OTHER_J2SDK_OVERLAY" ]; then
ohair@494 1291 echo -n "Overlay "
ohair@494 1292 compare_all_execs $THIS_J2SDK_OVERLAY $OTHER_J2SDK_OVERLAY $COMPARE_ROOT/j2sdk-overlay
ohair@494 1293 fi
ohair@494 1294 fi
ohair@494 1295
ohair@494 1296 echo
ohair@494 1297
ohair@494 1298 if [ -n "$REGRESSIONS" ]; then
ohair@494 1299 echo "REGRESSIONS FOUND!"
ohair@494 1300 echo
ohair@494 1301 exit 1
ohair@494 1302 else
ohair@494 1303 echo "No regressions found"
ohair@494 1304 echo
ohair@494 1305 exit 0
ohair@494 1306 fi

mercurial