Compare commits

...

14 Commits

Author SHA1 Message Date
Josh Matthews
fab77bc849 Fewer processes! 2018-12-18 19:06:24 -05:00
Josh Matthews
4cc836c824 Fewer processes! 2018-12-18 17:14:39 -05:00
Josh Matthews
7feefab29a Fewer processes! 2018-12-18 16:53:01 -05:00
Josh Matthews
a77f9edeeb More chunks! 2018-12-18 16:32:40 -05:00
Josh Matthews
55c4d1d508 Fewer processes, less logging 2018-12-18 15:49:06 -05:00
Josh Matthews
dee456b9fb Less logging 2018-12-17 18:18:34 -05:00
Josh Matthews
e3b65c1a3f Fewer chunks. 2018-12-17 18:18:07 -05:00
Josh Matthews
7a5f1fc315 More linux wpt chunks. 2018-12-17 17:02:51 -05:00
Josh Matthews
c098fcf9a2 Restrict net logging. 2018-12-17 15:07:05 -05:00
Josh Matthews
793ace02f0 More processes! 2018-12-17 12:31:59 -05:00
Josh Matthews
fc923700d5 Add more logging on taskcluster. 2018-12-17 11:33:33 -05:00
Josh Matthews
eb7b0b9712 More network logs. 2018-12-17 11:32:13 -05:00
Josh Matthews
ce05a17469 Unskip referrer-policy tests. 2018-12-17 09:47:35 -05:00
Josh Matthews
7449969f3d Reduce number of WPT processes on taskcluster 2018-12-17 09:46:40 -05:00
3 changed files with 11 additions and 7 deletions

View File

@@ -1195,6 +1195,13 @@ fn http_network_fetch(
.as_ref()
.map(|_| uuid::Uuid::new_v4().to_simple().to_string());
if log_enabled!(log::Level::Info) {
info!("request for {} ({:?})", url, request.method);
for header in request.headers.iter() {
info!(" - {:?}", header);
}
}
// XHR uses the default destination; other kinds of fetches (which haven't been implemented yet)
// do not. Once we support other kinds of fetches we'll need to be more fine grained here
// since things like image fetches are classified differently by devtools

View File

@@ -300,7 +300,7 @@ def windows_release():
def linux_wpt():
release_build_task = linux_release_build(with_debug_assertions=True)
total_chunks = 2
total_chunks = 8
for i in range(total_chunks):
this_chunk = i + 1
wpt_chunk(release_build_task, total_chunks, this_chunk)
@@ -338,6 +338,7 @@ def wpt_chunk(release_build_task, total_chunks, this_chunk):
.with_index_and_artifacts_expire_in(log_artifacts_expire_in)
.with_max_run_time_minutes(60)
.with_env(TOTAL_CHUNKS=total_chunks, THIS_CHUNK=this_chunk)
#.with_env(RUST_LOG="net::http_loader,net::resource_thread")
)
if this_chunk == 1:
task.name += " + extra"
@@ -362,7 +363,7 @@ def wpt_chunk(release_build_task, total_chunks, this_chunk):
task.with_script("""
./mach test-wpt \
--release \
--processes 24 \
--processes 4 \
--total-chunks "$TOTAL_CHUNKS" \
--this-chunk "$THIS_CHUNK" \
--log-raw test-wpt.log \

View File

@@ -1,10 +1,6 @@
skip: true
[_mozilla]
skip: false
[mozilla]
skip: false
[referrer-policy]
skip: true
[_webgl]
skip: false
[2dcontext]
@@ -106,7 +102,7 @@ skip: true
[quirks]
skip: false
[referrer-policy]
skip: true
skip: false
[resource-timing]
skip: false
[subresource-integrity]