On Tue, Dec 16, 2008 at 11:48 AM, Evan Martin <[email protected]> wrote:
> Tony set up a temporary pixel builder on his desktop, which Googlers
> can access at go/chrome_linuxpixel ; hopefully that'll only be up
> during the current period where we're trying to get the Linux pixel
> tests matching the non-pixel Linux tests. Currently we have 1554
> failing.
We're now down to 37 failures and 62 unexpected passes, after some
manual work on truly failing tests as well as some computer-assisted
work on those that just needed fuzzy diffing.
We should reexamine the 62 unexpected passes -- I spot-checked a few
and found at least one that looks suspicious.
Below is a little shell script I use to find test result images
quickly. I run it like
image-viewer `./test-results.sh LayoutTests/fast/forms/search-rtl*.png`
and it brings up all the expected results images we have on various platforms.
#!/bin/bash
target=$1
base=webkit/data/layout_tests
chrome_platform=$base/platform
webkit_platform=$base/LayoutTests/platform
for platform in $chrome_platform/* $webkit_platform/*; do
for file in $platform/$target; do
[ -e $file ] && echo $file
done
done
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Chromium-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/chromium-dev?hl=en
-~----------~----~----~----~------~----~------~--~---