mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
Compare commits
14 Commits
hacky-acce
...
jdm-patch-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fab77bc849 | ||
|
|
4cc836c824 | ||
|
|
7feefab29a | ||
|
|
a77f9edeeb | ||
|
|
55c4d1d508 | ||
|
|
dee456b9fb | ||
|
|
e3b65c1a3f | ||
|
|
7a5f1fc315 | ||
|
|
c098fcf9a2 | ||
|
|
793ace02f0 | ||
|
|
fc923700d5 | ||
|
|
eb7b0b9712 | ||
|
|
ce05a17469 | ||
|
|
7449969f3d |
@@ -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
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user