Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder linux-rel-wpt Build #5228

Results:

Failed shell__2 test__2

SourceStamp:

Projectservo/servo
Repositoryhttps://github.com/servo/servo
Branchtry
Revisiondc3313819afcc36fa1c6df5a41ebaa795fa17327
Got Revisiondc3313819afcc36fa1c6df5a41ebaa795fa17327
Changes1 change

BuildSlave:

servo-linux2

Reason:

The AnyBranchScheduler scheduler named 'servo-auto' triggered this build

Steps and Logfiles:

  1. git update ( 4 secs )
    1. - no logs -
  2. generic generic ( 0 secs )
    1. - no logs -
  3. generic_1 generic_1 ( 0 secs )
    1. - no logs -
  4. shell 'pkill -x ...' ( 0 secs )
    1. stdio
  5. shell__1 './mach clean-nightlies ...' ( 9 secs )
    1. stdio
  6. compile ran build --release --with-debug-assertions ( 18 mins, 55 secs )
    1. - no logs -
  7. test ran test-wpt-failure ( 0 secs )
    1. stdio
  8. test__1 ran test-wpt --release --processes 24 --always-succeed ( 12 mins, 46 secs )
    1. - no logs -
  9. shell__2 './mach filter-intermittents ...' failed ( 1 secs )
    1. stdio
    2. filtered-wpt-errorsummary.log
  10. test__2 ran test-wpt --release --binary-arg=--multiprocess --processes 24 eventsource failed ( 1 mins, 42 secs )
    1. - no logs -

Build Properties:

NameValueSource
branch try Build
builddir /home/servo/buildbot/slave/linux-rel-wpt slave
buildername linux-rel-wpt Builder
buildnumber 5228 Build
codebase Build
got_revision dc3313819afcc36fa1c6df5a41ebaa795fa17327 Git
project servo/servo Build
repository https://github.com/servo/servo Build
revision dc3313819afcc36fa1c6df5a41ebaa795fa17327 Build
scheduler servo-auto Scheduler
slavename servo-linux2 BuildSlave
warnings-count 0 WarningCountingShellCommand
workdir /home/servo/buildbot/slave/linux-rel-wpt slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. bors-servo

Timing:

StartThu Jul 27 18:23:30 2017
EndThu Jul 27 18:57:11 2017
Elapsed33 mins, 40 secs

All Changes:

:

  1. Change #55968

    Category None
    Changed by bors-servo <lbergstrom+borsohnoyoudont@mozilla.com>
    Changed at Thu 27 Jul 2017 18:23:30
    Repository https://github.com/servo/servo
    Project servo/servo
    Branch try
    Revision dc3313819afcc36fa1c6df5a41ebaa795fa17327

    Comments

    Auto merge of #17891 - MortimerGoro:webgl_move, r=<try>
    
    Improved WebGL architecture
    
    <!-- Please describe your changes on the following line: -->
    
    Info about the big picture and the goals of the WebGL refactor in this thread: https://groups.google.com/forum/#!topic/mozilla.dev.servo/0WMGz60kKzQ
    
    I tried to reduce this PR as much as possible as requested in the thread. I'll do separate PRs for other features (e.g.: Batch messages or use shared memory to improve frame times) or fixes.
    
    Some tips to ease the review process:
    - Most changes in DOM objects follow the same pattern (remove CanvasMsg wrapper and use the new sender method).
    - WebGLCommands are the same ones as before (moved from webrender_api). So those lines are already reviewed.
    - See WebGL traits in [components/canvas_traits/webgl.rs](https://github.com/servo/servo/pull/17891/files#diff-8701045d01505418701d0631d4d45562)
    - See WebGLThread and WR External Image bridge in [components/canvas/webgl_thread.rs](https://github.com/servo/servo/pull/17891/files#diff-281554879f39a2a041f7a69d442a5d2e)
    - The implementation submitted in this PR creates a single `WebGLThread` for all ScriptThread/Pipelines. See that in [components/canvas/webgl_mode/inprocess.rs](https://github.com/servo/servo/pull/17891/files#diff-250070c6c5a38c7f9fa0f5b3c101f68b)
    
    The conformance tests will help to guarantee that we don't miss anything.
    
    ---
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
    - [x] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [ ] These changes fix #__ (github issue number if applicable).
    
    <!-- Either: -->
    - [x] There are tests for these changes OR
    - [ ] These changes do not require tests because _____
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    
    <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
    
    <!-- Reviewable:start -->
    ---
    This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17891)
    <!-- Reviewable:end -->

    Changed files

    • Cargo.lock
    • components/canvas/Cargo.toml
    • components/canvas/canvas_paint_thread.rs
    • components/canvas/gl_context.rs
    • components/canvas/lib.rs
    • components/canvas/webgl_mode/inprocess.rs
    • components/canvas/webgl_mode/mod.rs
    • components/canvas/webgl_paint_thread.rs
    • components/canvas/webgl_thread.rs
    • components/canvas_traits/Cargo.toml
    • components/canvas_traits/canvas.rs
    • components/canvas_traits/lib.rs
    • components/canvas_traits/webgl.rs
    • components/canvas_traits/webgl_channel/ipc.rs
    • components/canvas_traits/webgl_channel/mod.rs
    • components/canvas_traits/webgl_channel/mpsc.rs
    • components/constellation/Cargo.toml
    • components/constellation/constellation.rs
    • components/constellation/lib.rs
    • components/constellation/pipeline.rs
    • components/gfx/display_list/mod.rs
    • components/layout/display_list_builder.rs
    • components/layout/fragment.rs
    • components/layout/webrender_helpers.rs
    • components/script/dom/bindings/trace.rs
    • components/script/dom/canvasgradient.rs
    • components/script/dom/canvaspattern.rs
    • components/script/dom/canvasrenderingcontext2d.rs
    • components/script/dom/htmlcanvaselement.rs
    • components/script/dom/paintrenderingcontext2d.rs
    • components/script/dom/paintworkletglobalscope.rs
    • components/script/dom/vrdisplay.rs
    • components/script/dom/webgl_extensions/ext/oesvertexarrayobject.rs
    • components/script/dom/webgl_extensions/ext/webglvertexarrayobjectoes.rs
    • components/script/dom/webgl_extensions/extensions.rs
    • components/script/dom/webgl_validations/tex_image_2d.rs
    • components/script/dom/webglbuffer.rs
    • components/script/dom/webglframebuffer.rs
    • components/script/dom/webglprogram.rs
    • components/script/dom/webglrenderbuffer.rs
    • components/script/dom/webglrenderingcontext.rs
    • components/script/dom/webglshader.rs
    • components/script/dom/webgltexture.rs
    • components/script/dom/webgluniformlocation.rs
    • components/script/dom/window.rs
    • components/script/script_thread.rs
    • components/script_layout_interface/lib.rs
    • components/script_traits/Cargo.toml
    • components/script_traits/lib.rs
    • components/script_traits/script_msg.rs
    • components/servo/lib.rs
    • components/webvr/Cargo.toml
    • components/webvr/lib.rs
    • components/webvr/webvr_thread.rs