2012-11-21 14:13:55 +04:00
|
|
|
include dirAuto/reftest.list
|
2015-03-20 05:06:07 +03:00
|
|
|
include numeral/reftest.list
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bdi-element.html bdi-element-ref.html # Bug 1392106
|
2007-07-02 13:39:35 +04:00
|
|
|
== bidi-000.html bidi-000-ref.html
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bidi-001.html bidi-001-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bidi-001-j.html bidi-001-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bidi-001-v.html bidi-001-ref.html # Bug 1392106
|
2007-07-02 13:39:35 +04:00
|
|
|
== bidi-002.html bidi-002-ref.html
|
2016-03-17 19:00:47 +03:00
|
|
|
== bidi-003.html bidi-003-ref.html
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(gtkWidget,0-255,0-17) == bidi-004.html bidi-004-ref.html # inconsistency in the Hebrew font that gets used
|
|
|
|
fuzzy-if(gtkWidget,0-255,0-17) == bidi-004-j.html bidi-004-ref.html # inconsistency in the Hebrew font that gets used
|
2007-09-20 14:34:02 +04:00
|
|
|
== bidi-005.html bidi-005-ref.html
|
2017-05-20 06:14:32 +03:00
|
|
|
random-if(cocoaWidget) == bidi-006.html bidi-006-ref.html # bug 734313
|
|
|
|
random-if(cocoaWidget) == bidi-006-j.html bidi-006-ref.html # bug 734313
|
2011-01-04 11:49:44 +03:00
|
|
|
== bidiSVG-01.svg bidiSVG-01-ref.svg
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bidiSVG-02.svg bidiSVG-02-ref.svg # Bug 1392106
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(Android,0-253,0-76) == bidiSVG-03.svg bidiSVG-03-ref.svg
|
|
|
|
fuzzy-if(skiaContent,0-1,0-1) == bidiSVG-04.svg bidiSVG-04-ref.svg
|
2011-01-04 11:49:44 +03:00
|
|
|
== bidiSVG-05.svg bidiSVG-05-ref.svg
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == bidiMirroring.svg bidiMirroring-ref.svg # Bug 1392106
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(Android,0-9,0-134) random-if(layersGPUAccelerated) == visualmarquee.html marquee-ref.html
|
|
|
|
fuzzy-if(Android,0-9,0-134) random-if(layersGPUAccelerated) == logicalmarquee.html marquee-ref.html
|
2010-07-15 20:28:22 +04:00
|
|
|
== visualmarquee.html logicalmarquee.html
|
2010-01-29 11:42:00 +03:00
|
|
|
# test for glyph mirroring in right-to-left text
|
|
|
|
== mirroring-01.html mirroring-01-ref.html
|
|
|
|
# quote marks are not supposed to mirror, but Unicode 5.0 said they should, so some systems do it
|
2010-07-31 03:48:57 +04:00
|
|
|
random-if(cocoaWidget) == mirroring-02.html mirroring-02-ref.html
|
2011-10-06 13:38:22 +04:00
|
|
|
== mirroring-03.html mirroring-03-ref.html
|
2007-11-08 14:23:07 +03:00
|
|
|
== mixedChartype-00.html mixedChartype-00-ref.html
|
|
|
|
== mixedChartype-00-j.html mixedChartype-00-ref.html
|
2010-11-26 00:13:51 +03:00
|
|
|
== mixedChartype-01.html mixedChartype-01-ref.html
|
|
|
|
== mixedChartype-01-j.html mixedChartype-01-ref.html
|
2010-12-09 09:46:01 +03:00
|
|
|
== mixedChartype-02.html mixedChartype-02-ref.html
|
|
|
|
== mixedChartype-02-j.html mixedChartype-02-ref.html
|
2010-11-26 00:13:51 +03:00
|
|
|
== mixedChartype-03.html mixedChartype-03-ref.html
|
|
|
|
== mixedChartype-03-j.html mixedChartype-03-ref.html
|
2011-04-23 05:36:24 +04:00
|
|
|
== unicode-bidi-anonymous-001.html unicode-bidi-anonymous-001-ref.html
|
|
|
|
== unicode-bidi-anonymous-002.html unicode-bidi-anonymous-002-ref.html
|
2016-06-29 10:47:18 +03:00
|
|
|
== unicode-bidi-isolate-basic.html unicode-bidi-isolate-basic-ref.html
|
2017-05-05 11:53:03 +03:00
|
|
|
== unicode-bidi-isolate-aharon.html unicode-bidi-isolate-aharon-ref.html
|
2018-09-10 22:30:44 +03:00
|
|
|
fuzzy-if(skiaContent,0-104,0-32) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == unicode-bidi-plaintext.html unicode-bidi-plaintext-ref.html # Bug 1392106
|
2017-05-10 23:11:36 +03:00
|
|
|
== unicode-bidi-plaintext-textarea-1.html unicode-bidi-plaintext-textarea-ref.html
|
|
|
|
== unicode-bidi-plaintext-textarea-2.html unicode-bidi-plaintext-textarea-ref.html
|
|
|
|
== unicode-bidi-plaintext-textarea-3.html unicode-bidi-plaintext-textarea-ref.html
|
|
|
|
== unicode-bidi-plaintext-textarea-4.html unicode-bidi-plaintext-textarea-ref.html
|
2009-02-08 21:28:30 +03:00
|
|
|
== with-first-letter-1a.html with-first-letter-1-ref.html
|
|
|
|
== with-first-letter-1b.html with-first-letter-1-ref.html
|
2012-03-09 09:02:11 +04:00
|
|
|
random-if(cocoaWidget) == with-first-letter-2a.html with-first-letter-2-ref.html # bug 734313
|
|
|
|
random-if(cocoaWidget) == with-first-letter-2b.html with-first-letter-2-ref.html # bug 734313
|
2011-04-11 11:59:29 +04:00
|
|
|
== 83958-1a.html 83958-1-ref.html
|
|
|
|
== 83958-1b.html 83958-1-ref.html
|
|
|
|
== 83958-1c.html 83958-1-ref.html
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)&&!layersGPUAccelerated&&!azureSkia,0-111,0-7) == 83958-2a.html 83958-2-ref.html
|
|
|
|
fuzzy-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)&&!layersGPUAccelerated&&!azureSkia,0-111,0-7) == 83958-2b.html 83958-2-ref.html
|
2009-04-23 10:09:47 +04:00
|
|
|
== 115921-1.html 115921-1-ref.html
|
2017-05-19 05:39:57 +03:00
|
|
|
== 115921-2.html 115921-2-ref.html
|
2013-04-14 16:37:48 +04:00
|
|
|
== 151407-1.html 151407-1-ref.html
|
|
|
|
== 151407-1a.html 151407-1-ref.html
|
|
|
|
== 151407-2-ltr.html 151407-2-ltr-ref.html
|
|
|
|
== 151407-2-rtl.html 151407-2-rtl-ref.html
|
|
|
|
== 151407-2-auto.html 151407-2-auto-ref.html
|
|
|
|
== 151407-2-empty.html 151407-2-empty-ref.html
|
|
|
|
== 151407-2-foopy.html 151407-2-empty-ref.html
|
|
|
|
== 151407-3-ltr.html 151407-3-ltr-ref.html
|
|
|
|
== 151407-3-rtl.html 151407-3-rtl-ref.html
|
|
|
|
== 151407-3-auto.html 151407-3-auto-ref.html
|
|
|
|
== 151407-3-foopy.html 151407-3-empty-ref.html
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 229367-1.html 229367-1-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 229367-2.html 229367-2-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 229367-3.html 229367-3-ref.html # Bug 1392106
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 258928-1.html 258928-1-ref.html # Bug 1392106
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 263359-1.html 263359-1-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 263359-1a.html 263359-1-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) != 263359-1b.html 263359-1-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 263359-2.html 263359-2-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 263359-3.html 263359-3-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 263359-4.html 263359-4-ref.html # Bug 1392106
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
random-if(winWidget) fuzzy-if(skiaContent,0-1,0-1700) == 267459-1.html 267459-1-ref.html # depends on windows version, see bug 590101
|
|
|
|
fuzzy-if(skiaContent,0-1,0-1100) == 267459-2.html 267459-2-ref.html
|
2009-03-19 12:15:06 +03:00
|
|
|
== 299065-1.html 299065-1-ref.html
|
2010-09-02 15:28:48 +04:00
|
|
|
random-if(winWidget) == 305643-1.html 305643-1-ref.html # depends on windows version, see bug 590101
|
2009-04-30 14:27:52 +04:00
|
|
|
== 332655-1.html 332655-1-ref.html
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 332655-2.html 332655-2-ref.html # Bug 1392106
|
2017-04-30 10:20:42 +03:00
|
|
|
== 381279-1.html 381279-1-ref.html
|
2011-10-06 20:09:41 +04:00
|
|
|
== 386339.html 386339-ref.html
|
2008-01-30 07:13:06 +03:00
|
|
|
== 409375.html 409375-ref.html
|
2008-01-27 09:54:08 +03:00
|
|
|
== 413542-1.html 413542-1-ref.html
|
|
|
|
== 413542-2.html 413542-2-ref.html
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 413928-1.html 413928-1-ref.html # Bug 1392106
|
|
|
|
fuzzy-if(webrender,0-52,0-14) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 413928-2.html 413928-2-ref.html # Bug 1392106
|
2008-03-28 09:08:16 +03:00
|
|
|
== 425338-1a.html 425338-1-ref.html
|
|
|
|
== 425338-1b.html 425338-1-ref.html
|
2009-04-23 10:09:47 +04:00
|
|
|
== 489517-1.html 489517-1-ref.html
|
2009-04-28 13:23:53 +04:00
|
|
|
== 489887-1.html 489887-1-ref.html
|
2009-05-11 14:36:01 +04:00
|
|
|
== 492231-1.html 492231-1-ref.html
|
2009-06-08 12:59:39 +04:00
|
|
|
== 496006-1.html 496006-1-ref.html
|
2009-07-12 17:32:48 +04:00
|
|
|
== 503269-1.html 503269-1-ref.html
|
2009-08-11 11:16:20 +04:00
|
|
|
== 503957-1.html 503957-1-ref.html
|
2009-11-08 20:40:46 +03:00
|
|
|
== 525740-1.html 525740-1-ref.html
|
2017-04-30 10:20:42 +03:00
|
|
|
== 536963-1.html 536963-1-ref.html
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(webrender,0-122,0-1) == 562169-1.html 562169-1-ref.html
|
|
|
|
fuzzy-if(webrender,0-122,0-1) == 562169-1a.html 562169-1-ref.html
|
2012-04-17 08:01:29 +04:00
|
|
|
== 562169-2.html 562169-2-ref.html
|
2017-05-15 21:38:01 +03:00
|
|
|
== 562169-2a.html 562169-2-ref.html
|
2012-04-17 08:01:29 +04:00
|
|
|
== 562169-3.html 562169-3-ref.html
|
2017-05-15 21:38:01 +03:00
|
|
|
== 562169-3a.html 562169-3-ref.html
|
2012-04-17 08:01:29 +04:00
|
|
|
== 562169-4.html 562169-4-ref.html
|
2010-09-06 18:32:01 +04:00
|
|
|
== 588739-1.html 588739-ref.html
|
|
|
|
== 588739-2.html 588739-ref.html
|
|
|
|
== 588739-3.html 588739-ref.html
|
2018-01-08 17:19:28 +03:00
|
|
|
== 612843-1.html 612843-1-ref.html
|
2018-05-29 20:50:33 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 613149-1a.html 613149-1-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 613149-1b.html 613149-1-ref.html # Bug 1392106
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 613149-2a.html 613149-2-ref.html # Bug 1392106
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) fuzzy-if(Android,0-24,0-1) == 613149-2b.html 613149-2-ref.html # Bug 1392106
|
2011-04-11 11:59:30 +04:00
|
|
|
== 613157-1.html 613157-1-ref.html
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)&&!layersGPUAccelerated&&!azureSkia,0-255,0-6) == 613157-2.html 613157-2-ref.html
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 662288-1.html 662288-1-ref.html # Bug 1392106
|
2017-06-01 23:18:54 +03:00
|
|
|
== 670226-1.html 670226-1-ref.html
|
2011-12-04 20:02:12 +04:00
|
|
|
== 676245-1.html 676245-1-ref.html
|
Bug 1369941: Replace single integers N in fuzzy() and fuzzy-if() with 0-N ranges. r=dholbert
This patch was written entirely by the following script:
#!/bin/bash
if [ ! -d "./.hg" ]
then
echo "Not in a source tree." 1>&2
exit 1
fi
find . -regex '.*\(ref\|crash\)test.*\.list' | while read FILENAME
do
echo "Processing ${FILENAME}."
# The following has four substitutions:
# * The first one replaces the *first* argument to fuzzy() when it doesn't
# have a - in it, by replacing it with an explicit 0-N range.
# * The second one does the same for the *second* argument to fuzzy().
# * The third does the same for the *second* argument to fuzzy-if().
# * The fourth does the same for the *third* argument to fuzzy-if().
#
# Note that this is using perl rather than sed because perl doesn't
# support non-greedy matching, which is needed for the first argument to
# fuzzy-if.
perl -pi -e 's/(fuzzy\()([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy\([^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,)([^ ,()-]*)(,[^ ,()]*\))/${1}0-${2}${3}/g;s/(fuzzy-if\([^ ]*?,[^ ,()]*,)([^ ,()-]*)(\))/${1}0-${2}${3}/g' "${FILENAME}"
done
Differential Revision: https://phabricator.services.mozilla.com/D2974
--HG--
extra : moz-landing-system : lando
2018-08-09 23:10:21 +03:00
|
|
|
fuzzy-if(skiaContent,0-1,0-3) == 698291-1.html 698291-1-ref.html
|
2011-11-07 18:26:50 +04:00
|
|
|
== 698706-1.html 698706-1-ref.html
|
2011-11-24 18:16:46 +04:00
|
|
|
== 704837-1.html 704837-1-ref.html
|
2018-06-01 16:29:35 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 712600-1.html 712600-1-ref.html # Bug 1392106
|
2018-08-27 21:38:37 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 712600-2.html 712600-2-ref.html # Bug 1392106
|
2018-06-26 20:32:30 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 712600-2-dyn.html 712600-2-ref.html # Bug 1392106
|
2018-08-27 21:38:37 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 712600-3.html 712600-3-ref.html # Bug 1392106
|
2012-01-26 12:04:16 +04:00
|
|
|
== 718236-1.html 718236-1-ref.html
|
|
|
|
== 718236-2.html 718236-2-ref.html
|
|
|
|
== 718236-3.html 718236-3-ref.html
|
2017-05-10 23:11:36 +03:00
|
|
|
== 726420-1.html 726420-1-ref.html
|
2012-03-22 03:50:29 +04:00
|
|
|
== 726460-1.html 726460-1-ref.html
|
2012-02-26 11:12:55 +04:00
|
|
|
== 729047-1.html 729047-1-ref.html
|
2012-03-22 03:50:45 +04:00
|
|
|
== 730562-1.html 730562-1-ref.html
|
2012-05-09 12:44:52 +04:00
|
|
|
== 746987-1.html 746987-1-ref.html
|
|
|
|
== 746987-2.html 746987-2-ref.html
|
|
|
|
== 746987-3.html 746987-3-ref.html
|
|
|
|
== 746987-4.html 746987-4-ref.html
|
2012-10-25 12:36:37 +04:00
|
|
|
== 779003-1.html 779003-1-ref.html
|
|
|
|
== 779003-1-dynamic.html 779003-1-ref.html
|
2015-05-28 01:18:36 +03:00
|
|
|
== 817406-1.html 817406-1-ref.html
|
|
|
|
== 817406-2.html 817406-2-ref.html
|
|
|
|
== 817406-3.html 817406-1-ref.html
|
|
|
|
== 817406-4.html 817406-4-ref.html
|
2014-03-05 23:04:36 +04:00
|
|
|
== 847242-1.html 847242-1-ref.html
|
2019-07-02 06:01:31 +03:00
|
|
|
pref(layout.css.xul-tree-pseudos.content.enabled,true) fuzzy-if(xulRuntime.widgetToolkit=="gtk3",0-1,0-11) == 869833-1.xul 869833-1-ref.xul
|
2014-05-21 21:16:43 +04:00
|
|
|
== 922530-1.html 922530-1-ref.html
|
2018-09-10 22:30:44 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 922550-1.html 922550-1-ref.html # Bug 1392106
|
2014-04-25 11:03:49 +04:00
|
|
|
== 989994-1.html 989994-1-ref.html
|
2014-10-05 10:02:37 +04:00
|
|
|
== 1067268-1.html 1067268-1-ref.html
|
2014-09-30 21:59:12 +04:00
|
|
|
== 1069941-inline-bidi-border-1.html 1069941-inline-bidi-border-1-ref.html
|
|
|
|
== 1069941-inline-bidi-margin-1.html 1069941-inline-bidi-margin-1-ref.html
|
2019-07-02 06:01:31 +03:00
|
|
|
!= 1155359-1.xul 1155359-1-ref.xul
|
2015-04-29 05:41:44 +03:00
|
|
|
== 1157726-1.html 1157726-1-ref.html
|
2015-05-28 01:18:37 +03:00
|
|
|
== 1161752.html 1161752-ref.html
|
|
|
|
== 1161752-5-embed.html 1161752-5-embed-ref.html
|
2018-08-27 21:38:37 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1a-ltr.html brackets-1a-ltr-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1a-rtl.html brackets-1a-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1b-ltr.html brackets-1b-ltr-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1b-rtl.html brackets-1b-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1c-ltr.html brackets-1c-ltr-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-1c-rtl.html brackets-1c-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2a-ltr.html brackets-2a-ltr-ref.html # Bug 1392106
|
|
|
|
fuzzy-if(Android,0-254,0-557) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2a-rtl.html brackets-2a-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2b-ltr.html brackets-2b-ltr-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2b-rtl.html brackets-2b-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2c-ltr.html brackets-2c-ltr-ref.html # Bug 1392106
|
|
|
|
fuzzy-if(Android,0-254,0-231) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-2c-rtl.html brackets-2c-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-3a-ltr.html brackets-3a-ltr-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-3a-rtl.html brackets-3a-rtl-ref.html # Bug 1392106
|
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-3b-ltr.html brackets-3b-ltr-ref.html # Bug 1392106
|
2019-06-11 19:12:03 +03:00
|
|
|
fuzzy-if(Android&&!geckoview,207-207,32-32) random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == brackets-3b-rtl.html brackets-3b-rtl-ref.html # Bug 1392106
|
2017-07-29 04:20:41 +03:00
|
|
|
== 1217833-1.html 1217833-1-ref.html
|
|
|
|
== 1217833-2.html 1217833-2-ref.html
|
2015-12-09 19:58:17 +03:00
|
|
|
== 1231175-1.html 1231175-1-ref.html
|
2017-05-23 17:21:58 +03:00
|
|
|
== 1366623-1.html 1366623-1-ref.html
|
2018-08-27 21:38:37 +03:00
|
|
|
random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == 1426042-1.html 1426042-1-ref.html # Bug 1392106
|
2019-05-29 02:25:12 +03:00
|
|
|
== clone-intrinsic-size-bidi.html clone-intrinsic-size-bidi-ref.html
|
|
|
|
== slice-intrinsic-size-bidi.html slice-intrinsic-size-bidi-ref.html
|
2019-06-05 15:03:29 +03:00
|
|
|
== 1556414-1.html 1556414-1-ref.html
|