mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
This allows us to disable test output, which performs expensive assert tracking. This was making our imported tests run significantly slower than tests run via `WPT.sh`. Formatting the output ourselves also allows us to remove unnecessary information from the test output. This commit also rebaselines all existing imported WPT tests to follow the new format.
29 lines
2.2 KiB
Plaintext
29 lines
2.2 KiB
Plaintext
Harness status: OK
|
|
|
|
Found 24 tests
|
|
|
|
24 Pass
|
|
Pass ReadableStream with byte source: read({ min }) rejects if min is 0
|
|
Pass ReadableStream with byte source: read({ min }) rejects if min is negative
|
|
Pass ReadableStream with byte source: read({ min }) rejects if min is larger than view's length (Uint8Array)
|
|
Pass ReadableStream with byte source: read({ min }) rejects if min is larger than view's length (Uint16Array)
|
|
Pass ReadableStream with byte source: read({ min }) rejects if min is larger than view's length (DataView)
|
|
Pass ReadableStream with byte source: read({ min }), then read()
|
|
Pass ReadableStream with byte source: read({ min }) with a DataView
|
|
Pass ReadableStream with byte source: enqueue(), then read({ min })
|
|
Pass ReadableStream with byte source: read({ min: 3 }) on a 3-byte Uint8Array, then multiple enqueue() up to 3 bytes
|
|
Pass ReadableStream with byte source: read({ min: 3 }) on a 5-byte Uint8Array, then multiple enqueue() up to 3 bytes
|
|
Pass ReadableStream with byte source: read({ min: 3 }) on a 5-byte Uint8Array, then multiple enqueue() up to 4 bytes
|
|
Pass ReadableStream with byte source: enqueue(), read({ min }) partially, then read()
|
|
Pass ReadableStream with byte source: read({ min }), then respondWithNewView() with a transferred ArrayBuffer
|
|
Pass ReadableStream with byte source: read({ min }) on a closed stream
|
|
Pass ReadableStream with byte source: read({ min }) when closed before view is filled
|
|
Pass ReadableStream with byte source: read({ min }) when closed immediately after view is filled
|
|
Pass ReadableStream with byte source: read({ min }) on an errored stream
|
|
Pass ReadableStream with byte source: read({ min }), then error()
|
|
Pass ReadableStream with byte source: getReader(), read({ min }), then cancel()
|
|
Pass ReadableStream with byte source: cancel() with partially filled pending read({ min }) request
|
|
Pass ReadableStream with byte source: enqueue(), then read({ min }) with smaller views
|
|
Pass ReadableStream with byte source: 3 byte enqueue(), then close(), then read({ min }) with 2-element Uint16Array must fail
|
|
Pass ReadableStream with byte source: read({ min }) with 2-element Uint16Array, then 3 byte enqueue(), then close() must fail
|
|
Pass ReadableStream with byte source: tee() with read({ min }) from branch1 and read() from branch2 |