Changeset 167374 in webkit


Ignore:
Timestamp:
Apr 16, 2014 12:01:00 PM (10 years ago)
Author:
ddkilzer@apple.com
Message:

Remove test results that match platform/mac results

Found using this shell script:

$ for F in find LayoutTests/platform/ios-sim -name \*-expected.txt; do \
T=echo $F | sed -e 's#platform/ios-sim/##'; \
M=echo $F | sed -e 's#platform/ios-sim/#platform/mac/#'; \
ML=echo $F | sed -e 's#platform/ios-sim/#platform/mac-mountainlion/#'; \
if [ -f $M -a ! -f $ML -a -z "diff -u $F $M 2> /dev/null" ]; then echo $F; fi; \
done

  • platform/ios-sim/fast/block/positioning/016-expected.txt: Removed.
  • platform/ios-sim/fast/block/positioning/025-expected.txt: Removed.
  • platform/ios-sim/fast/dom/icon-url-property-expected.txt: Removed.
  • platform/ios-sim/fast/hidpi/focus-rings-expected.txt: Removed.
  • platform/ios-sim/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Removed.
  • platform/ios-sim/fast/preloader/document-write-2-expected.txt: Removed.
  • platform/ios-sim/fast/preloader/script-expected.txt: Removed.
  • platform/ios-sim/fast/writing-mode/broken-ideograph-small-caps-expected.txt: Removed.
  • platform/ios-sim/fast/xsl/sort-locale-expected.txt: Removed.
  • platform/ios-sim/http/tests/security/mixedContent/insecure-audio-video-in-main-frame-expected.txt: Removed.
  • platform/ios-sim/sputnik/Unicode/Unicode_320/S7.6_A2.2_T2-expected.txt: Removed.
  • platform/ios-sim/sputnik/Unicode/Unicode_320/S7.6_A5.2_T8-expected.txt: Removed.
  • platform/ios-sim/webarchive/loading/mainresource-null-mimetype-crash-expected.txt: Removed.
Location:
trunk/LayoutTests
Files:
12 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r167373 r167374  
     12014-04-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        Remove test results that match platform/mac results
     4
     5        Found using this shell script:
     6
     7        $ for F in `find LayoutTests/platform/ios-sim -name \*-expected.txt`; do \
     8        T=`echo $F | sed -e 's#platform/ios-sim/##'`; \
     9        M=`echo $F | sed -e 's#platform/ios-sim/#platform/mac/#'`; \
     10        ML=`echo $F | sed -e 's#platform/ios-sim/#platform/mac-mountainlion/#'`; \
     11        if [ -f $M -a ! -f $ML -a -z "`diff -u $F $M 2> /dev/null`" ]; then echo $F; fi; \
     12        done
     13
     14        * platform/ios-sim/fast/block/positioning/016-expected.txt: Removed.
     15        * platform/ios-sim/fast/block/positioning/025-expected.txt: Removed.
     16        * platform/ios-sim/fast/dom/icon-url-property-expected.txt: Removed.
     17        * platform/ios-sim/fast/hidpi/focus-rings-expected.txt: Removed.
     18        * platform/ios-sim/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Removed.
     19        * platform/ios-sim/fast/preloader/document-write-2-expected.txt: Removed.
     20        * platform/ios-sim/fast/preloader/script-expected.txt: Removed.
     21        * platform/ios-sim/fast/writing-mode/broken-ideograph-small-caps-expected.txt: Removed.
     22        * platform/ios-sim/fast/xsl/sort-locale-expected.txt: Removed.
     23        * platform/ios-sim/http/tests/security/mixedContent/insecure-audio-video-in-main-frame-expected.txt: Removed.
     24        * platform/ios-sim/sputnik/Unicode/Unicode_320/S7.6_A2.2_T2-expected.txt: Removed.
     25        * platform/ios-sim/sputnik/Unicode/Unicode_320/S7.6_A5.2_T8-expected.txt: Removed.
     26        * platform/ios-sim/webarchive/loading/mainresource-null-mimetype-crash-expected.txt: Removed.
     27
    1282014-04-16  David Kilzer  <ddkilzer@apple.com>
    229
Note: See TracChangeset for help on using the changeset viewer.