>>> llhttp: Building community/llhttp 9.4.1-r0 (using abuild 3.17.0_rc2-r0) started Wed, 03 Jun 2026 13:43:20 +0000 >>> llhttp: Validating /home/buildozer/aports/community/llhttp/APKBUILD... >>> llhttp: Analyzing dependencies... >>> llhttp: Installing for build: build-base cmake clang samurai npm ( 1/24) Installing libbz2 (1.0.8-r6) ( 2/24) Installing xz-libs (5.8.3-r0) ( 3/24) Installing libarchive (3.8.7-r0) ( 4/24) Installing rhash-libs (1.4.6-r0) ( 5/24) Installing libuv (1.52.1-r0) ( 6/24) Installing cmake (4.2.3-r0) ( 7/24) Installing clang22-headers (22.1.3-r2) ( 8/24) Installing libffi (3.5.2-r1) ( 9/24) Installing libxml2 (2.13.9-r2) (10/24) Installing llvm22-libs (22.1.3-r0) (11/24) Installing clang22-libs (22.1.3-r2) (12/24) Installing llvm22-linker-tools (22.1.3-r0) (13/24) Installing clang22 (22.1.3-r2) (14/24) Installing samurai (1.2-r8) (15/24) Installing ca-certificates (20260413-r0) (16/24) Installing ada-libs (3.3.0-r0) (17/24) Installing icu-data-en (78.1-r0) Executing icu-data-en-78.1-r0.post-install * If you need ICU with non-English locales and legacy charset support, install * package icu-data-full. (18/24) Installing icu-libs (78.1-r0) (19/24) Installing simdjson (4.2.4-r0) (20/24) Installing simdutf (9.0.0-r0) (21/24) Installing sqlite-libs (3.53.1-r0) (22/24) Installing nodejs (24.16.0-r0) (23/24) Installing npm (11.12.1-r0) (24/24) Installing .makedepends-llhttp (20260603.134321) Executing busybox-1.37.0-r31.trigger Executing ca-certificates-20260413-r0.trigger OK: 863.2 MiB in 129 packages >>> llhttp: Cleaning up srcdir >>> llhttp: Cleaning up pkgdir >>> llhttp: Cleaning up tmpdir >>> llhttp: Fetching https://distfiles.alpinelinux.org/distfiles/edge/llhttp-9.4.1.tar.gz Connecting to distfiles.alpinelinux.org (172.105.82.32:443) wget: server returned error: HTTP/1.1 404 Not Found >>> llhttp: Fetching https://github.com/nodejs/llhttp/archive/v9.4.1/llhttp-9.4.1.tar.gz Connecting to github.com (140.82.121.3:443) Connecting to codeload.github.com (140.82.121.9:443) saving to '/var/cache/distfiles/edge/llhttp-9.4.1.tar.gz.part' llhttp-9.4.1.tar.gz. 100% |********************************| 6141k 0:00:00 ETA '/var/cache/distfiles/edge/llhttp-9.4.1.tar.gz.part' saved /var/cache/distfiles/edge/llhttp-9.4.1.tar.gz: OK >>> llhttp: Fetching https://distfiles.alpinelinux.org/distfiles/edge/llhttp-9.4.1.tar.gz /var/cache/distfiles/edge/llhttp-9.4.1.tar.gz: OK >>> llhttp: Unpacking /var/cache/distfiles/edge/llhttp-9.4.1.tar.gz... > llhttp@9.4.1 prepare > npm run clean && npm run build-ts > llhttp@9.4.1 clean > node --import tsx scripts/clean.ts > llhttp@9.4.1 build-ts > tsc added 141 packages, and audited 142 packages in 6s 37 packages are looking for funding run `npm fund` for details 3 moderate severity vulnerabilities To address issues that do not require attention, run: npm audit fix Some issues need review, and may require choosing a different dependency. Run `npm audit` for details. rm -rf release/ node --import tsx bin/generate.ts rm -rf build/ mkdir -p build/native rm -rf test/tmp clang -Os -fstack-clash-protection -Wformat -Werror=format-security -Os -g3 -Wall -Wextra -Wno-unused-parameter -fPIC -Ibuild/ -c build/c/llhttp.c -o build/c/llhttp.o clang -Os -fstack-clash-protection -Wformat -Werror=format-security -Os -g3 -Wall -Wextra -Wno-unused-parameter -fPIC -Ibuild/ -c src/native/api.c -o build/native/api.o clang -Os -fstack-clash-protection -Wformat -Werror=format-security -Os -g3 -Wall -Wextra -Wno-unused-parameter -fPIC -Ibuild/ -c src/native/http.c -o build/native/http.o ar rcs build/libllhttp.a build/c/llhttp.o build/native/api.o build/native/http.o clang -shared build/c/llhttp.o build/native/api.o build/native/http.o -o build/libllhttp.so rm -rf release mkdir -p release/cmake mkdir -p release/src mkdir -p release/include cp -rf build/llhttp.h release/include/ cp -rf build/c/llhttp.c release/src/ cp -rf src/native/*.c release/src/ cp -rf src/llhttp.gyp release/ cp -rf src/common.gypi release/ cp -rf cmake/llhttpConfig.cmake.in release/cmake sed s/_RELEASE_/9.4.1/ CMakeLists.txt > release/CMakeLists.txt cp -rf libllhttp.pc.in release/ cp -rf README.md release/ cp -rf LICENSE release/ -- The C compiler identification is GNU 15.2.0 -- The CXX compiler identification is GNU 15.2.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /usr/bin/cc - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- -- -- Project configure summary: -- -- CMake build type .................: MINSIZEREL -- Install prefix ...................: /usr -- Build shared library .............: ON -- Build static library .............: OFF -- -- Configuring done (0.5s) -- Generating done (0.0s) -- Build files have been written to: /home/buildozer/aports/community/llhttp/src/llhttp-9.4.1/releasebuild [1/5] Building C object CMakeFiles/llhttp_shared.dir/src/api.c.o [2/5] Building C object CMakeFiles/llhttp_shared.dir/src/http.c.o [3/5] Building C object CMakeFiles/llhttp_shared.dir/src/llhttp.c.o [4/5] Linking C shared library libllhttp.so.9.4.1 [5/5] Creating library symlink libllhttp.so.9.4 libllhttp.so > llhttp@9.4.1 test > node --import tsx ./test/md-test.ts ▶ Sample requests at request/sample.md:1 ▶ Simple request at request/sample.md:6 ✔ should pass for type="request" (location=request/sample.md:6) (3161.859251ms) ✔ Simple request at request/sample.md:6 (3164.069735ms) ▶ Request with method starting with `H` at request/sample.md:39 ✔ should pass for type="request" (location=request/sample.md:39) (90.171188ms) ✔ Request with method starting with `H` at request/sample.md:39 (90.506101ms) ▶ curl GET at request/sample.md:67 ✔ should pass for type="request" (location=request/sample.md:67) (130.843009ms) ✔ curl GET at request/sample.md:67 (131.202042ms) ▶ Firefox GET at request/sample.md:105 ✔ should pass for type="request" (location=request/sample.md:105) (207.614858ms) ✔ Firefox GET at request/sample.md:105 (207.972752ms) ▶ DUMBPACK at request/sample.md:168 ✔ should pass for type="request" (location=request/sample.md:168) (67.922139ms) ✔ DUMBPACK at request/sample.md:168 (68.342604ms) ▶ No headers and no body at request/sample.md:196 ✔ should pass for type="request" (location=request/sample.md:196) (112.9157ms) ✔ No headers and no body at request/sample.md:196 (113.224326ms) ▶ One header and no body at request/sample.md:219 ✔ should pass for type="request" (location=request/sample.md:219) (62.20019ms) ✔ One header and no body at request/sample.md:219 (62.509766ms) ▶ Apache bench GET at request/sample.md:247 ✔ should pass for type="request" (location=request/sample.md:247) (111.053844ms) ✔ Apache bench GET at request/sample.md:247 (111.260362ms) ▶ Prefix newline at request/sample.md:288 ✔ should pass for type="request" (location=request/sample.md:288) (60.27558ms) ✔ Prefix newline at request/sample.md:288 (60.520595ms) ▶ No HTTP version at request/sample.md:314 ✔ should pass for type="request" (location=request/sample.md:314) (19.170512ms) ✔ No HTTP version at request/sample.md:314 (19.384193ms) ▶ Line folding in header value with CRLF at request/sample.md:333 ✔ should pass for type="request-lenient-headers" (location=request/sample.md:333) (3061.701218ms) ✔ Line folding in header value with CRLF at request/sample.md:333 (3061.888614ms) ▶ Line folding in header value with LF at request/sample.md:394 ✔ should pass for type="request" (location=request/sample.md:394) (110.468078ms) ✔ Line folding in header value with LF at request/sample.md:394 (110.647327ms) ▶ No LF after CR at request/sample.md:432 ✔ should pass for type="request" (location=request/sample.md:432) (65.653406ms) ✔ No LF after CR at request/sample.md:432 (65.851057ms) ▶ No LF after CR (lenient) at request/sample.md:454 ✔ should pass for type="request-lenient-optional-lf-after-cr" (location=request/sample.md:454) (2934.933478ms) ✔ No LF after CR (lenient) at request/sample.md:454 (2935.166153ms) ▶ Request starting with CRLF at request/sample.md:478 ✔ should pass for type="request" (location=request/sample.md:478) (129.1198ms) ✔ Request starting with CRLF at request/sample.md:478 (129.351787ms) ▶ Extended Characters at request/sample.md:506 ✔ should pass for type="request" (location=request/sample.md:506) (4.021764ms) ✔ Extended Characters at request/sample.md:506 (4.242318ms) ▶ 255 ASCII in header value at request/sample.md:536 ✔ should pass for type="request" (location=request/sample.md:536) (3.817129ms) ✔ 255 ASCII in header value at request/sample.md:536 (4.038463ms) ▶ X-SSL-Nonsense at request/sample.md:571 ✔ should pass for type="request-lenient-headers" (location=request/sample.md:571) (709.016379ms) ✔ X-SSL-Nonsense at request/sample.md:571 (709.240786ms) ✔ Sample requests at request/sample.md:1 (11052.462672ms) ▶ Lenient header value parsing at request/lenient-headers.md:1 ▶ Header value at request/lenient-headers.md:82 ▶ Empty headers separated by CR (lenient) at request/lenient-headers.md:109 ✔ should pass for type="request-lenient-headers" (location=request/lenient-headers.md:109) (110.487261ms) ✔ Empty headers separated by CR (lenient) at request/lenient-headers.md:109 (110.719756ms) ✔ Header value at request/lenient-headers.md:82 (110.867418ms) ▶ Header value (lenient) at request/lenient-headers.md:6 ✔ should pass for type="request-lenient-headers" (location=request/lenient-headers.md:6) (80.335194ms) ✔ Header value (lenient) at request/lenient-headers.md:6 (80.522228ms) ▶ Second request header value (lenient) at request/lenient-headers.md:34 ✔ should pass for type="request-lenient-headers" (location=request/lenient-headers.md:34) (93.369308ms) ✔ Second request header value (lenient) at request/lenient-headers.md:34 (93.553942ms) ▶ Header value at request/lenient-headers.md:82 ✔ should pass for type="request" (location=request/lenient-headers.md:82) (84.678926ms) ✔ Header value at request/lenient-headers.md:82 (84.865064ms) ✔ Lenient header value parsing at request/lenient-headers.md:1 (370.351764ms) ▶ Relaxed header value character parsing at request/lenient-header-value-relaxed.md:1 ▶ Control char in header value (relaxed) at request/lenient-header-value-relaxed.md:8 ✔ should pass for type="request-lenient-header-value-relaxed" (location=request/lenient-header-value-relaxed.md:8) (2948.566494ms) ✔ Control char in header value (relaxed) at request/lenient-header-value-relaxed.md:8 (2948.748902ms) ▶ Control char in header value (strict) at request/lenient-header-value-relaxed.md:38 ✔ should pass for type="request" (location=request/lenient-header-value-relaxed.md:38) (101.782699ms) ✔ Control char in header value (strict) at request/lenient-header-value-relaxed.md:38 (101.950628ms) ▶ LF in header value should be rejected even with relaxed flag at request/lenient-header-value-relaxed.md:66 ✔ should pass for type="request-lenient-header-value-relaxed" (location=request/lenient-header-value-relaxed.md:66) (103.570623ms) ✔ LF in header value should be rejected even with relaxed flag at request/lenient-header-value-relaxed.md:66 (103.760102ms) ▶ CR without LF in header value should be rejected even with relaxed flag at request/lenient-header-value-relaxed.md:101 ✔ should pass for type="request-lenient-header-value-relaxed" (location=request/lenient-header-value-relaxed.md:101) (95.231637ms) ✔ CR without LF in header value should be rejected even with relaxed flag at request/lenient-header-value-relaxed.md:101 (95.382346ms) ▶ Space after start line must still fail at request/lenient-header-value-relaxed.md:136 ✔ should pass for type="request-lenient-header-value-relaxed" (location=request/lenient-header-value-relaxed.md:136) (82.557803ms) ✔ Space after start line must still fail at request/lenient-header-value-relaxed.md:136 (82.745535ms) ✔ Relaxed header value character parsing at request/lenient-header-value-relaxed.md:1 (3333.148613ms) ▶ Lenient HTTP version parsing at request/lenient-version.md:1 ▶ Invalid HTTP version (lenient) at request/lenient-version.md:4 ✔ should pass for type="request-lenient-version" (location=request/lenient-version.md:4) (2923.334949ms) ✔ Invalid HTTP version (lenient) at request/lenient-version.md:4 (2923.538853ms) ✔ Lenient HTTP version parsing at request/lenient-version.md:1 (2923.682221ms) ▶ Methods at request/method.md:1 ▶ REPORT request at request/method.md:4 ✔ should pass for type="request" (location=request/method.md:4) (80.090472ms) ✔ REPORT request at request/method.md:4 (80.275709ms) ▶ CONNECT request at request/method.md:27 ✔ should pass for type="request" (location=request/method.md:27) (119.025231ms) ✔ CONNECT request at request/method.md:27 (119.221819ms) ▶ CONNECT request with CAPS at request/method.md:62 ✔ should pass for type="request" (location=request/method.md:62) (126.823548ms) ✔ CONNECT request with CAPS at request/method.md:62 (127.012527ms) ▶ CONNECT with body at request/method.md:96 ✔ should pass for type="request" (location=request/method.md:96) (149.752195ms) ✔ CONNECT with body at request/method.md:96 (149.938081ms) ▶ M-SEARCH request at request/method.md:135 ✔ should pass for type="request" (location=request/method.md:135) (121.566054ms) ✔ M-SEARCH request at request/method.md:135 (121.78528ms) ▶ PATCH request at request/method.md:173 ✔ should pass for type="request" (location=request/method.md:173) (129.669952ms) ✔ PATCH request at request/method.md:173 (129.885524ms) ▶ PURGE request at request/method.md:217 ✔ should pass for type="request" (location=request/method.md:217) (67.271854ms) ✔ PURGE request at request/method.md:217 (67.460781ms) ▶ SEARCH request at request/method.md:245 ✔ should pass for type="request" (location=request/method.md:245) (116.59001ms) ✔ SEARCH request at request/method.md:245 (116.791011ms) ▶ LINK request at request/method.md:273 ✔ should pass for type="request" (location=request/method.md:273) (122.245567ms) ✔ LINK request at request/method.md:273 (122.470598ms) ▶ LINK request at request/method.md:311 ✔ should pass for type="request" (location=request/method.md:311) (101.055046ms) ✔ LINK request at request/method.md:311 (101.254329ms) ▶ SOURCE request at request/method.md:344 ✔ should pass for type="request" (location=request/method.md:344) (73.873592ms) ✔ SOURCE request at request/method.md:344 (74.055752ms) ▶ SOURCE request with ICE at request/method.md:372 ✔ should pass for type="request" (location=request/method.md:372) (77.584611ms) ✔ SOURCE request with ICE at request/method.md:372 (77.776194ms) ▶ OPTIONS request with RTSP at request/method.md:400 ✔ should pass for type="request" (location=request/method.md:400) (75.943607ms) ✔ OPTIONS request with RTSP at request/method.md:400 (76.13806ms) ▶ ANNOUNCE request with RTSP at request/method.md:430 ✔ should pass for type="request" (location=request/method.md:430) (76.039295ms) ✔ ANNOUNCE request with RTSP at request/method.md:430 (76.254847ms) ▶ PRI request HTTP2 at request/method.md:458 ✔ should pass for type="request" (location=request/method.md:458) (78.044396ms) ✔ PRI request HTTP2 at request/method.md:458 (78.252776ms) ▶ QUERY request at request/method.md:482 ✔ should pass for type="request" (location=request/method.md:482) (115.59206ms) ✔ QUERY request at request/method.md:482 (115.81204ms) ✔ Methods at request/method.md:1 (1635.897869ms) ▶ URI at request/uri.md:1 ▶ Quotes in URI at request/uri.md:4 ✔ should pass for type="request" (location=request/uri.md:4) (72.037389ms) ✔ Quotes in URI at request/uri.md:4 (72.194114ms) ▶ Query URL with question mark at request/uri.md:27 ✔ should pass for type="request" (location=request/uri.md:27) (100.911084ms) ✔ Query URL with question mark at request/uri.md:27 (101.101068ms) ▶ Host terminated by a query string at request/uri.md:52 ✔ should pass for type="request" (location=request/uri.md:52) (142.421869ms) ✔ Host terminated by a query string at request/uri.md:52 (142.62353ms) ▶ `host:port` terminated by a query string at request/uri.md:75 ✔ should pass for type="request" (location=request/uri.md:75) (64.606826ms) ✔ `host:port` terminated by a query string at request/uri.md:75 (64.794764ms) ▶ Query URL with vertical bar character at request/uri.md:98 ✔ should pass for type="request" (location=request/uri.md:98) (91.231683ms) ✔ Query URL with vertical bar character at request/uri.md:98 (91.431648ms) ▶ `host:port` terminated by a space at request/uri.md:125 ✔ should pass for type="request" (location=request/uri.md:125) (108.281141ms) ✔ `host:port` terminated by a space at request/uri.md:125 (108.510165ms) ▶ Disallow UTF-8 in URI path in strict mode at request/uri.md:148 ✔ should pass for type="request" (location=request/uri.md:148) (4.470935ms) ✔ Disallow UTF-8 in URI path in strict mode at request/uri.md:148 (4.666962ms) ▶ Fragment in URI at request/uri.md:165 ✔ should pass for type="request" (location=request/uri.md:165) (76.052196ms) ✔ Fragment in URI at request/uri.md:165 (76.224619ms) ▶ Underscore in hostname at request/uri.md:188 ✔ should pass for type="request" (location=request/uri.md:188) (111.543337ms) ✔ Underscore in hostname at request/uri.md:188 (111.749834ms) ▶ `host:port` and basic auth at request/uri.md:222 ✔ should pass for type="request" (location=request/uri.md:222) (72.144951ms) ✔ `host:port` and basic auth at request/uri.md:222 (72.326639ms) ▶ Space in URI at request/uri.md:245 ✔ should pass for type="request" (location=request/uri.md:245) (2.847163ms) ✔ Space in URI at request/uri.md:245 (3.037215ms) ✔ URI at request/uri.md:1 (849.842387ms) ▶ Connection header at request/connection.md:1 ▶ `keep-alive` at request/connection.md:4 ▶ Setting flag at request/connection.md:6 ✔ should pass for type="request" (location=request/connection.md:6) (123.015675ms) ✔ Setting flag at request/connection.md:6 (123.1882ms) ▶ Restarting when keep-alive is explicitly at request/connection.md:34 ✔ should pass for type="request" (location=request/connection.md:34) (121.054101ms) ✔ Restarting when keep-alive is explicitly at request/connection.md:34 (121.247431ms) ▶ No restart when keep-alive is off (1.0) at request/connection.md:81 ✔ should pass for type="request" (location=request/connection.md:81) (111.458718ms) ✔ No restart when keep-alive is off (1.0) at request/connection.md:81 (111.648498ms) ▶ Resetting flags when keep-alive is off (1.0, lenient) at request/connection.md:107 ✔ should pass for type="request-lenient-keep-alive" (location=request/connection.md:107) (2969.157338ms) ✔ Resetting flags when keep-alive is off (1.0, lenient) at request/connection.md:107 (2969.453496ms) ▶ CRLF between requests, implicit `keep-alive` at request/connection.md:156 ✔ should pass for type="request" (location=request/connection.md:156) (146.541174ms) ✔ CRLF between requests, implicit `keep-alive` at request/connection.md:156 (146.834869ms) ▶ Not treating `\r` as `-` at request/connection.md:208 ✔ should pass for type="request" (location=request/connection.md:208) (143.371042ms) ✔ Not treating `\r` as `-` at request/connection.md:208 (143.594622ms) ✔ `keep-alive` at request/connection.md:4 (3616.844999ms) ▶ `close` at request/connection.md:234 ▶ Setting flag on `close` at request/connection.md:236 ✔ should pass for type="request" (location=request/connection.md:236) (130.954792ms) ✔ Setting flag on `close` at request/connection.md:236 (131.146127ms) ▶ CRLF between requests, explicit `close` at request/connection.md:264 ✔ should pass for type="request" (location=request/connection.md:264) (118.316442ms) ✔ CRLF between requests, explicit `close` at request/connection.md:264 (118.54505ms) ▶ CRLF between requests, explicit `close` (lenient) at request/connection.md:314 ✔ should pass for type="request-lenient-keep-alive" (location=request/connection.md:314) (136.696183ms) ✔ CRLF between requests, explicit `close` (lenient) at request/connection.md:314 (136.951367ms) ✔ `close` at request/connection.md:234 (387.001306ms) ▶ Parsing multiple tokens at request/connection.md:373 ▶ Sample at request/connection.md:375 ✔ should pass for type="request" (location=request/connection.md:375) (115.544565ms) ✔ Sample at request/connection.md:375 (115.727124ms) ▶ Multiple tokens with folding at request/connection.md:403 ✔ should pass for type="request-lenient-headers" (location=request/connection.md:403) (194.411237ms) ✔ Multiple tokens with folding at request/connection.md:403 (194.620957ms) ▶ Multiple tokens with folding and LWS at request/connection.md:464 ✔ should pass for type="request" (location=request/connection.md:464) (156.947896ms) ✔ Multiple tokens with folding and LWS at request/connection.md:464 (157.17693ms) ▶ Multiple tokens with folding, LWS, and CRLF at request/connection.md:498 ✔ should pass for type="request-lenient-headers" (location=request/connection.md:498) (153.536828ms) ✔ Multiple tokens with folding, LWS, and CRLF at request/connection.md:498 (153.740074ms) ▶ Invalid whitespace token with `Connection` header field at request/connection.md:533 ✔ should pass for type="request" (location=request/connection.md:533) (128.598998ms) ✔ Invalid whitespace token with `Connection` header field at request/connection.md:533 (128.790501ms) ▶ Invalid whitespace token with `Connection` header field (lenient) at request/connection.md:559 ✔ should pass for type="request-lenient-headers" (location=request/connection.md:559) (142.225259ms) ✔ Invalid whitespace token with `Connection` header field (lenient) at request/connection.md:559 (142.4258ms) ✔ Parsing multiple tokens at request/connection.md:373 (893.125623ms) ▶ `upgrade` at request/connection.md:599 ▶ Setting a flag and pausing at request/connection.md:601 ✔ should pass for type="request" (location=request/connection.md:601) (91.076558ms) ✔ Setting a flag and pausing at request/connection.md:601 (91.263473ms) ▶ Emitting part of body and pausing at request/connection.md:635 ✔ should pass for type="request" (location=request/connection.md:635) (129.398142ms) ✔ Emitting part of body and pausing at request/connection.md:635 (129.609081ms) ▶ Upgrade GET request at request/connection.md:675 ✔ should pass for type="request" (location=request/connection.md:675) (198.113228ms) ✔ Upgrade GET request at request/connection.md:675 (198.312018ms) ▶ Upgrade POST request at request/connection.md:734 ✔ should pass for type="request" (location=request/connection.md:734) (162.683247ms) ✔ Upgrade POST request at request/connection.md:734 (162.871519ms) ✔ `upgrade` at request/connection.md:599 (582.47392ms) ✔ Connection header at request/connection.md:1 (5479.874732ms) ▶ Content-Length header at request/content-length.md:1 ▶ Spaces in `Content-Length` (surrounding) at request/content-length.md:290 ▶ Tabs in `Content-Length` (surrounding) at request/content-length.md:317 ✔ should pass for type="request" (location=request/content-length.md:317) (138.388194ms) ✔ Tabs in `Content-Length` (surrounding) at request/content-length.md:317 (138.598049ms) ▶ Spaces in `Content-Length` #2 at request/content-length.md:344 ✔ should pass for type="request" (location=request/content-length.md:344) (134.048892ms) ✔ Spaces in `Content-Length` #2 at request/content-length.md:344 (134.261974ms) ▶ Spaces in `Content-Length` #3 at request/content-length.md:370 ✔ should pass for type="request" (location=request/content-length.md:370) (140.91642ms) ✔ Spaces in `Content-Length` #3 at request/content-length.md:370 (141.116039ms) ▶ Empty `Content-Length` at request/content-length.md:396 ✔ should pass for type="request" (location=request/content-length.md:396) (120.124581ms) ✔ Empty `Content-Length` at request/content-length.md:396 (120.349687ms) ✔ Spaces in `Content-Length` (surrounding) at request/content-length.md:290 (534.729928ms) ▶ `Content-Length` with zeroes at request/content-length.md:4 ✔ should pass for type="request" (location=request/content-length.md:4) (157.626556ms) ✔ `Content-Length` with zeroes at request/content-length.md:4 (157.870038ms) ▶ `Content-Length` with follow-up headers at request/content-length.md:33 ✔ should pass for type="request" (location=request/content-length.md:33) (103.301092ms) ✔ `Content-Length` with follow-up headers at request/content-length.md:33 (103.496187ms) ▶ Error on `Content-Length` overflow at request/content-length.md:75 ✔ should pass for type="request" (location=request/content-length.md:75) (107.68006ms) ✔ Error on `Content-Length` overflow at request/content-length.md:75 (107.883812ms) ▶ Error on duplicate `Content-Length` at request/content-length.md:100 ✔ should pass for type="request" (location=request/content-length.md:100) (98.254776ms) ✔ Error on duplicate `Content-Length` at request/content-length.md:100 (98.457589ms) ▶ Error on simultaneous `Content-Length` and `Transfer-Encoding: identity` at request/content-length.md:129 ✔ should pass for type="request" (location=request/content-length.md:129) (129.734211ms) ✔ Error on simultaneous `Content-Length` and `Transfer-Encoding: identity` at request/content-length.md:129 (129.957766ms) ▶ Invalid whitespace token with `Content-Length` header field at request/content-length.md:159 ✔ should pass for type="request" (location=request/content-length.md:159) (149.350025ms) ✔ Invalid whitespace token with `Content-Length` header field at request/content-length.md:159 (149.600865ms) ▶ Invalid whitespace token with `Content-Length` header field (lenient) at request/content-length.md:189 ✔ should pass for type="request-lenient-headers" (location=request/content-length.md:189) (160.082095ms) ✔ Invalid whitespace token with `Content-Length` header field (lenient) at request/content-length.md:189 (160.320443ms) ▶ No error on simultaneous `Content-Length` and `Transfer-Encoding: identity` (lenient) at request/content-length.md:229 ✔ should pass for type="request-lenient-chunked-length" (location=request/content-length.md:229) (3146.018199ms) ✔ No error on simultaneous `Content-Length` and `Transfer-Encoding: identity` (lenient) at request/content-length.md:229 (3146.27922ms) ▶ Funky `Content-Length` with body at request/content-length.md:261 ✔ should pass for type="request" (location=request/content-length.md:261) (166.571779ms) ✔ Funky `Content-Length` with body at request/content-length.md:261 (166.810637ms) ▶ Spaces in `Content-Length` (surrounding) at request/content-length.md:290 ✔ should pass for type="request" (location=request/content-length.md:290) (141.738595ms) ✔ Spaces in `Content-Length` (surrounding) at request/content-length.md:290 (142.252962ms) ▶ `Content-Length` with CR instead of dash at request/content-length.md:421 ✔ should pass for type="request" (location=request/content-length.md:421) (4.056641ms) ✔ `Content-Length` with CR instead of dash at request/content-length.md:421 (4.309602ms) ▶ Content-Length reset when no body is received at request/content-length.md:444 ✔ should pass for type="request" (location=request/content-length.md:444) (3184.095144ms) ✔ Content-Length reset when no body is received at request/content-length.md:444 (3184.340532ms) ▶ Missing CRLF-CRLF before body at request/content-length.md:493 ✔ should pass for type="request" (location=request/content-length.md:493) (138.767536ms) ✔ Missing CRLF-CRLF before body at request/content-length.md:493 (139.04627ms) ▶ Missing CRLF-CRLF before body (lenient) at request/content-length.md:519 ✔ should pass for type="request-lenient-optional-lf-after-cr" (location=request/content-length.md:519) (147.190217ms) ✔ Missing CRLF-CRLF before body (lenient) at request/content-length.md:519 (147.419993ms) ✔ Content-Length header at request/content-length.md:1 (8374.456309ms) ▶ Transfer-Encoding header at request/transfer-encoding.md:1 ▶ `chunked` at request/transfer-encoding.md:4 ▶ Parsing and setting flag at request/transfer-encoding.md:6 ✔ should pass for type="request" (location=request/transfer-encoding.md:6) (79.737968ms) ✔ Parsing and setting flag at request/transfer-encoding.md:6 (79.986691ms) ▶ Parse chunks with lowercase size at request/transfer-encoding.md:33 ✔ should pass for type="request" (location=request/transfer-encoding.md:33) (118.44303ms) ✔ Parse chunks with lowercase size at request/transfer-encoding.md:33 (118.692082ms) ▶ Parse chunks with uppercase size at request/transfer-encoding.md:70 ✔ should pass for type="request" (location=request/transfer-encoding.md:70) (111.303306ms) ✔ Parse chunks with uppercase size at request/transfer-encoding.md:70 (111.522303ms) ▶ POST with `Transfer-Encoding: chunked` at request/transfer-encoding.md:107 ✔ should pass for type="request" (location=request/transfer-encoding.md:107) (120.816955ms) ✔ POST with `Transfer-Encoding: chunked` at request/transfer-encoding.md:107 (121.064077ms) ▶ Two chunks and triple zero prefixed end chunk at request/transfer-encoding.md:144 ✔ should pass for type="request" (location=request/transfer-encoding.md:144) (108.184445ms) ✔ Two chunks and triple zero prefixed end chunk at request/transfer-encoding.md:144 (108.412189ms) ▶ Trailing headers at request/transfer-encoding.md:186 ✔ should pass for type="request" (location=request/transfer-encoding.md:186) (156.79418ms) ✔ Trailing headers at request/transfer-encoding.md:186 (157.027135ms) ▶ Chunk extensions at request/transfer-encoding.md:238 ✔ should pass for type="request" (location=request/transfer-encoding.md:238) (174.595026ms) ✔ Chunk extensions at request/transfer-encoding.md:238 (174.812494ms) ▶ No semicolon before chunk extensions at request/transfer-encoding.md:291 ✔ should pass for type="request" (location=request/transfer-encoding.md:291) (161.482614ms) ✔ No semicolon before chunk extensions at request/transfer-encoding.md:291 (161.752188ms) ▶ No extension after semicolon at request/transfer-encoding.md:328 ✔ should pass for type="request" (location=request/transfer-encoding.md:328) (140.082249ms) ✔ No extension after semicolon at request/transfer-encoding.md:328 (140.31865ms) ▶ Chunk extensions quoting at request/transfer-encoding.md:366 ✔ should pass for type="request" (location=request/transfer-encoding.md:366) (165.155205ms) ✔ Chunk extensions quoting at request/transfer-encoding.md:366 (165.524581ms) ▶ Unbalanced chunk extensions quoting at request/transfer-encoding.md:424 ✔ should pass for type="request" (location=request/transfer-encoding.md:424) (130.918507ms) ✔ Unbalanced chunk extensions quoting at request/transfer-encoding.md:424 (131.139715ms) ✔ `chunked` at request/transfer-encoding.md:4 (1471.522556ms) ▶ Invalid OBS fold after chunked value at request/transfer-encoding.md:942 ▶ Chunk header not terminated by CRLF at request/transfer-encoding.md:976 ✔ should pass for type="request" (location=request/transfer-encoding.md:976) (131.502302ms) ✔ Chunk header not terminated by CRLF at request/transfer-encoding.md:976 (131.719694ms) ▶ Chunk header not terminated by CRLF (lenient) at request/transfer-encoding.md:1025 ✔ should pass for type="request-lenient-optional-lf-after-cr" (location=request/transfer-encoding.md:1025) (150.930761ms) ✔ Chunk header not terminated by CRLF (lenient) at request/transfer-encoding.md:1025 (151.242715ms) ▶ Chunk data not terminated by CRLF at request/transfer-encoding.md:1097 ✔ should pass for type="request" (location=request/transfer-encoding.md:1097) (141.66499ms) ✔ Chunk data not terminated by CRLF at request/transfer-encoding.md:1097 (141.919186ms) ▶ Chunk data not terminated by CRLF (lenient) at request/transfer-encoding.md:1140 ✔ should pass for type="request-lenient-optional-crlf-after-chunk" (location=request/transfer-encoding.md:1140) (3005.286771ms) ✔ Chunk data not terminated by CRLF (lenient) at request/transfer-encoding.md:1140 (3005.493833ms) ✔ Invalid OBS fold after chunked value at request/transfer-encoding.md:942 (3430.87165ms) ▶ Ignoring `pigeons` at request/transfer-encoding.md:464 ✔ should pass for type="request" (location=request/transfer-encoding.md:464) (3.164296ms) ✔ Ignoring `pigeons` at request/transfer-encoding.md:464 (3.329145ms) ▶ POST with `Transfer-Encoding` and `Content-Length` at request/transfer-encoding.md:495 ✔ should pass for type="request" (location=request/transfer-encoding.md:495) (111.633245ms) ✔ POST with `Transfer-Encoding` and `Content-Length` at request/transfer-encoding.md:495 (111.819651ms) ▶ POST with `Transfer-Encoding` and `Content-Length` (lenient) at request/transfer-encoding.md:530 ✔ should pass for type="request-lenient-chunked-length" (location=request/transfer-encoding.md:530) (133.452222ms) ✔ POST with `Transfer-Encoding` and `Content-Length` (lenient) at request/transfer-encoding.md:530 (133.683395ms) ▶ POST with empty `Transfer-Encoding` and `Content-Length` (lenient) at request/transfer-encoding.md:574 ✔ should pass for type="request" (location=request/transfer-encoding.md:574) (136.739642ms) ✔ POST with empty `Transfer-Encoding` and `Content-Length` (lenient) at request/transfer-encoding.md:574 (136.973638ms) ▶ POST with `chunked` before other transfer coding names at request/transfer-encoding.md:613 ✔ should pass for type="request" (location=request/transfer-encoding.md:613) (4.845066ms) ✔ POST with `chunked` before other transfer coding names at request/transfer-encoding.md:613 (5.013993ms) ▶ POST with `chunked` and duplicate transfer-encoding at request/transfer-encoding.md:644 ✔ should pass for type="request" (location=request/transfer-encoding.md:644) (4.183971ms) ✔ POST with `chunked` and duplicate transfer-encoding at request/transfer-encoding.md:644 (4.330668ms) ▶ POST with `chunked` before other transfer-coding (lenient) at request/transfer-encoding.md:680 ✔ should pass for type="request-lenient-transfer-encoding" (location=request/transfer-encoding.md:680) (3228.210361ms) ✔ POST with `chunked` before other transfer-coding (lenient) at request/transfer-encoding.md:680 (3228.455406ms) ▶ POST with `chunked` and duplicate transfer-encoding (lenient) at request/transfer-encoding.md:713 ✔ should pass for type="request-lenient-transfer-encoding" (location=request/transfer-encoding.md:713) (163.792243ms) ✔ POST with `chunked` and duplicate transfer-encoding (lenient) at request/transfer-encoding.md:713 (164.03428ms) ▶ POST with `chunked` as last transfer-encoding at request/transfer-encoding.md:751 ✔ should pass for type="request" (location=request/transfer-encoding.md:751) (146.379846ms) ✔ POST with `chunked` as last transfer-encoding at request/transfer-encoding.md:751 (146.638056ms) ▶ POST with `chunked` as last transfer-encoding (multiple headers) at request/transfer-encoding.md:793 ✔ should pass for type="request" (location=request/transfer-encoding.md:793) (171.704131ms) ✔ POST with `chunked` as last transfer-encoding (multiple headers) at request/transfer-encoding.md:793 (171.926768ms) ▶ POST with `chunkedchunked` as transfer-encoding at request/transfer-encoding.md:840 ✔ should pass for type="request" (location=request/transfer-encoding.md:840) (127.071965ms) ✔ POST with `chunkedchunked` as transfer-encoding at request/transfer-encoding.md:840 (127.273064ms) ▶ Missing last-chunk at request/transfer-encoding.md:877 ✔ should pass for type="request" (location=request/transfer-encoding.md:877) (84.861841ms) ✔ Missing last-chunk at request/transfer-encoding.md:877 (85.10441ms) ▶ Validate chunk parameters at request/transfer-encoding.md:911 ✔ should pass for type="request" (location=request/transfer-encoding.md:911) (88.220065ms) ✔ Validate chunk parameters at request/transfer-encoding.md:911 (88.442705ms) ▶ Invalid OBS fold after chunked value at request/transfer-encoding.md:942 ✔ should pass for type="request-lenient-headers" (location=request/transfer-encoding.md:942) (106.591323ms) ✔ Invalid OBS fold after chunked value at request/transfer-encoding.md:942 (106.831935ms) ▶ Space after chunk header at request/transfer-encoding.md:1184 ✔ should pass for type="request" (location=request/transfer-encoding.md:1184) (96.802117ms) ✔ Space after chunk header at request/transfer-encoding.md:1184 (97.017364ms) ▶ Space after chunk header (lenient) at request/transfer-encoding.md:1215 ✔ should pass for type="request-lenient-spaces-after-chunk-size" (location=request/transfer-encoding.md:1215) (3008.864959ms) ✔ Space after chunk header (lenient) at request/transfer-encoding.md:1215 (3009.084452ms) ✔ Transfer-Encoding header at request/transfer-encoding.md:1 (12524.254341ms) ▶ Invalid requests at request/invalid.md:1 ▶ Invalid space after start line at request/invalid.md:509 ▶ Only LFs present at request/invalid.md:531 ✔ should pass for type="request" (location=request/invalid.md:531) (118.512377ms) ✔ Only LFs present at request/invalid.md:531 (118.721395ms) ▶ Only LFs present (lenient) at request/invalid.md:568 ✔ should pass for type="request-lenient-all" (location=request/invalid.md:568) (2971.91041ms) ✔ Only LFs present (lenient) at request/invalid.md:568 (2972.104328ms) ▶ Spaces before headers at request/invalid.md:650 ✔ should pass for type="request" (location=request/invalid.md:650) (108.75354ms) ✔ Spaces before headers at request/invalid.md:650 (108.948818ms) ▶ Spaces before headers (lenient) at request/invalid.md:686 ✔ should pass for type="request-lenient-headers" (location=request/invalid.md:686) (116.446743ms) ✔ Spaces before headers (lenient) at request/invalid.md:686 (116.657433ms) ✔ Invalid space after start line at request/invalid.md:509 (3316.856637ms) ▶ ICE protocol and GET method at request/invalid.md:4 ✔ should pass for type="request" (location=request/invalid.md:4) (77.798047ms) ✔ ICE protocol and GET method at request/invalid.md:4 (78.006435ms) ▶ ICE protocol, but not really at request/invalid.md:25 ✔ should pass for type="request" (location=request/invalid.md:25) (85.198422ms) ✔ ICE protocol, but not really at request/invalid.md:25 (85.434813ms) ▶ RTSP protocol and PUT method at request/invalid.md:45 ✔ should pass for type="request" (location=request/invalid.md:45) (80.68216ms) ✔ RTSP protocol and PUT method at request/invalid.md:45 (80.906501ms) ▶ HTTP protocol and ANNOUNCE method at request/invalid.md:66 ✔ should pass for type="request" (location=request/invalid.md:66) (88.23602ms) ✔ HTTP protocol and ANNOUNCE method at request/invalid.md:66 (88.4629ms) ▶ Headers separated by CR at request/invalid.md:87 ✔ should pass for type="request" (location=request/invalid.md:87) (123.134513ms) ✔ Headers separated by CR at request/invalid.md:87 (123.376405ms) ▶ Headers separated by LF at request/invalid.md:113 ✔ should pass for type="request" (location=request/invalid.md:113) (157.716447ms) ✔ Headers separated by LF at request/invalid.md:113 (157.95669ms) ▶ Headers separated by dummy characters at request/invalid.md:147 ✔ should pass for type="request" (location=request/invalid.md:147) (140.401603ms) ✔ Headers separated by dummy characters at request/invalid.md:147 (140.628265ms) ▶ Headers separated by dummy characters (lenient) at request/invalid.md:181 ✔ should pass for type="request-lenient-optional-lf-after-cr" (location=request/invalid.md:181) (129.06382ms) ✔ Headers separated by dummy characters (lenient) at request/invalid.md:181 (129.296985ms) ▶ Empty headers separated by CR at request/invalid.md:216 ✔ should pass for type="request" (location=request/invalid.md:216) (126.35615ms) ✔ Empty headers separated by CR at request/invalid.md:216 (126.573218ms) ▶ Empty headers separated by LF at request/invalid.md:254 ✔ should pass for type="request" (location=request/invalid.md:254) (138.894861ms) ✔ Empty headers separated by LF at request/invalid.md:254 (139.115849ms) ▶ Invalid header token #1 at request/invalid.md:287 ✔ should pass for type="request" (location=request/invalid.md:287) (3.249679ms) ✔ Invalid header token #1 at request/invalid.md:287 (3.407857ms) ▶ Invalid header token #2 at request/invalid.md:310 ✔ should pass for type="request" (location=request/invalid.md:310) (3.025244ms) ✔ Invalid header token #2 at request/invalid.md:310 (3.20165ms) ▶ Invalid header token #3 at request/invalid.md:333 ✔ should pass for type="request" (location=request/invalid.md:333) (2.972863ms) ✔ Invalid header token #3 at request/invalid.md:333 (3.157737ms) ▶ Invalid method at request/invalid.md:356 ✔ should pass for type="request" (location=request/invalid.md:356) (72.283569ms) ✔ Invalid method at request/invalid.md:356 (72.46542ms) ▶ Illegal header field name line folding at request/invalid.md:372 ✔ should pass for type="request" (location=request/invalid.md:372) (4.220119ms) ✔ Illegal header field name line folding at request/invalid.md:372 (4.380037ms) ▶ Corrupted Connection header at request/invalid.md:396 ✔ should pass for type="request" (location=request/invalid.md:396) (4.020893ms) ✔ Corrupted Connection header at request/invalid.md:396 (4.18608ms) ▶ Corrupted header name at request/invalid.md:425 ✔ should pass for type="request" (location=request/invalid.md:425) (3.508156ms) ✔ Corrupted header name at request/invalid.md:425 (3.671611ms) ▶ Missing CR between headers at request/invalid.md:454 ✔ should pass for type="request" (location=request/invalid.md:454) (3.012713ms) ✔ Missing CR between headers at request/invalid.md:454 (3.168501ms) ▶ Invalid HTTP version at request/invalid.md:490 ✔ should pass for type="request" (location=request/invalid.md:490) (3.194955ms) ✔ Invalid HTTP version at request/invalid.md:490 (3.344317ms) ▶ Invalid space after start line at request/invalid.md:509 ✔ should pass for type="request" (location=request/invalid.md:509) (81.396284ms) ✔ Invalid space after start line at request/invalid.md:509 (81.593161ms) ✔ Invalid requests at request/invalid.md:1 (4651.454122ms) ▶ Finish at request/finish.md:1 ▶ It should be safe to finish after GET request at request/finish.md:6 ✔ should pass for type="request-finish" (location=request/finish.md:6) (3078.665608ms) ✔ It should be safe to finish after GET request at request/finish.md:6 (3079.245356ms) ▶ It should be unsafe to finish after incomplete PUT request at request/finish.md:30 ✔ should pass for type="request-finish" (location=request/finish.md:30) (131.194656ms) ✔ It should be unsafe to finish after incomplete PUT request at request/finish.md:30 (131.461121ms) ▶ It should be unsafe to finish inside of the header at request/finish.md:55 ✔ should pass for type="request-finish" (location=request/finish.md:55) (80.572301ms) ✔ It should be unsafe to finish inside of the header at request/finish.md:55 (80.822114ms) ✔ Finish at request/finish.md:1 (3291.998352ms) ▶ Pausing at request/pausing.md:1 ▶ on_message_begin at request/pausing.md:4 ✔ should pass for type="request" (location=request/pausing.md:4) (3068.925201ms) ✔ on_message_begin at request/pausing.md:4 (3069.1549ms) ▶ on_message_complete at request/pausing.md:34 ✔ should pass for type="request" (location=request/pausing.md:34) (3038.285693ms) ✔ on_message_complete at request/pausing.md:34 (3038.544235ms) ▶ on_protocol_complete at request/pausing.md:64 ✔ should pass for type="request" (location=request/pausing.md:64) (3160.45512ms) ✔ on_protocol_complete at request/pausing.md:64 (3160.702741ms) ▶ on_method_complete at request/pausing.md:94 ✔ should pass for type="request" (location=request/pausing.md:94) (3182.756301ms) ✔ on_method_complete at request/pausing.md:94 (3183.005039ms) ▶ on_url_complete at request/pausing.md:124 ✔ should pass for type="request" (location=request/pausing.md:124) (3141.712275ms) ✔ on_url_complete at request/pausing.md:124 (3142.000067ms) ▶ on_version_complete at request/pausing.md:154 ✔ should pass for type="request" (location=request/pausing.md:154) (3379.005534ms) ✔ on_version_complete at request/pausing.md:154 (3379.365092ms) ▶ on_header_field_complete at request/pausing.md:184 ✔ should pass for type="request" (location=request/pausing.md:184) (3191.215941ms) ✔ on_header_field_complete at request/pausing.md:184 (3191.493323ms) ▶ on_header_value_complete at request/pausing.md:214 ✔ should pass for type="request" (location=request/pausing.md:214) (3081.588069ms) ✔ on_header_value_complete at request/pausing.md:214 (3081.805343ms) ▶ on_headers_complete at request/pausing.md:244 ✔ should pass for type="request" (location=request/pausing.md:244) (3177.548591ms) ✔ on_headers_complete at request/pausing.md:244 (3177.991819ms) ▶ on_chunk_header at request/pausing.md:274 ✔ should pass for type="request" (location=request/pausing.md:274) (3128.529492ms) ✔ on_chunk_header at request/pausing.md:274 (3128.748555ms) ▶ on_chunk_extension_name at request/pausing.md:313 ✔ should pass for type="request" (location=request/pausing.md:313) (3207.241656ms) ✔ on_chunk_extension_name at request/pausing.md:313 (3207.540117ms) ▶ on_chunk_extension_value at request/pausing.md:355 ✔ should pass for type="request" (location=request/pausing.md:355) (3233.978637ms) ✔ on_chunk_extension_value at request/pausing.md:355 (3234.239336ms) ▶ on_chunk_complete at request/pausing.md:398 ✔ should pass for type="request" (location=request/pausing.md:398) (2982.849438ms) ✔ on_chunk_complete at request/pausing.md:398 (2983.106491ms) ✔ Pausing at request/pausing.md:1 (40979.403514ms) ▶ Pipelining at request/pipelining.md:1 ▶ Should parse multiple events at request/pipelining.md:4 ✔ should pass for type="request" (location=request/pipelining.md:4) (173.578726ms) ✔ Should parse multiple events at request/pipelining.md:4 (173.797057ms) ✔ Pipelining at request/pipelining.md:1 (174.068285ms) ▶ Sample responses at response/sample.md:1 ▶ Simple response at response/sample.md:4 ✔ should pass for type="response" (location=response/sample.md:4) (3042.67715ms) ✔ Simple response at response/sample.md:4 (3042.915404ms) ▶ RTSP response at response/sample.md:40 ✔ should pass for type="response" (location=response/sample.md:40) (61.920693ms) ✔ RTSP response at response/sample.md:40 (62.444378ms) ▶ ICE response at response/sample.md:60 ✔ should pass for type="response" (location=response/sample.md:60) (60.542073ms) ✔ ICE response at response/sample.md:60 (60.769325ms) ▶ Error on invalid response start at response/sample.md:80 ✔ should pass for type="response" (location=response/sample.md:80) (67.511681ms) ✔ Error on invalid response start at response/sample.md:80 (67.746497ms) ▶ Empty body should not trigger spurious span callbacks at response/sample.md:98 ✔ should pass for type="response" (location=response/sample.md:98) (55.048023ms) ✔ Empty body should not trigger spurious span callbacks at response/sample.md:98 (55.29018ms) ▶ Google 301 at response/sample.md:118 ✔ should pass for type="response" (location=response/sample.md:118) (292.205273ms) ✔ Google 301 at response/sample.md:118 (292.440023ms) ▶ amazon.com at response/sample.md:196 ✔ should pass for type="response" (location=response/sample.md:196) (331.476868ms) ✔ amazon.com at response/sample.md:196 (331.682359ms) ▶ No headers and no body at response/sample.md:271 ✔ should pass for type="response" (location=response/sample.md:271) (84.599375ms) ✔ No headers and no body at response/sample.md:271 (84.806459ms) ▶ No reason phrase at response/sample.md:291 ✔ should pass for type="response" (location=response/sample.md:291) (56.844267ms) ✔ No reason phrase at response/sample.md:291 (57.040813ms) ▶ Empty reason phrase after space at response/sample.md:310 ✔ should pass for type="response" (location=response/sample.md:310) (61.567309ms) ✔ Empty reason phrase after space at response/sample.md:310 (61.796755ms) ▶ No carriage ret at response/sample.md:330 ✔ should pass for type="response" (location=response/sample.md:330) (146.075909ms) ✔ No carriage ret at response/sample.md:330 (146.27186ms) ▶ No carriage ret (lenient) at response/sample.md:351 ✔ should pass for type="response-lenient-optional-cr-before-lf" (location=response/sample.md:351) (3136.565813ms) ✔ No carriage ret (lenient) at response/sample.md:351 (3136.766527ms) ▶ Underscore in header key at response/sample.md:382 ✔ should pass for type="response" (location=response/sample.md:382) (169.950121ms) ✔ Underscore in header key at response/sample.md:382 (170.181662ms) ▶ bonjourmadame.fr at response/sample.md:425 ✔ should pass for type="response" (location=response/sample.md:425) (217.166718ms) ✔ bonjourmadame.fr at response/sample.md:425 (217.400863ms) ▶ Spaces in header value at response/sample.md:494 ✔ should pass for type="response" (location=response/sample.md:494) (265.326836ms) ✔ Spaces in header value at response/sample.md:494 (265.539935ms) ▶ Spaces in header name at response/sample.md:574 ✔ should pass for type="response" (location=response/sample.md:574) (47.814689ms) ✔ Spaces in header name at response/sample.md:574 (48.017427ms) ▶ Non ASCII in status line at response/sample.md:609 ✔ should pass for type="response" (location=response/sample.md:609) (2.971079ms) ✔ Non ASCII in status line at response/sample.md:609 (3.131931ms) ▶ HTTP version 0.9 at response/sample.md:645 ✔ should pass for type="response" (location=response/sample.md:645) (64.767661ms) ✔ HTTP version 0.9 at response/sample.md:645 (64.94088ms) ▶ No Content-Length, no Transfer-Encoding at response/sample.md:665 ✔ should pass for type="response" (location=response/sample.md:665) (92.706351ms) ✔ No Content-Length, no Transfer-Encoding at response/sample.md:665 (92.930994ms) ▶ Response starting with CRLF at response/sample.md:695 ✔ should pass for type="response" (location=response/sample.md:695) (127.720426ms) ✔ Response starting with CRLF at response/sample.md:695 (127.926146ms) ✔ Sample responses at response/sample.md:1 (8391.933419ms) ▶ Connection header at response/connection.md:1 ▶ Proxy-Connection at response/connection.md:4 ✔ should pass for type="response" (location=response/connection.md:4) (145.106527ms) ✔ Proxy-Connection at response/connection.md:4 (145.307122ms) ▶ HTTP/1.0 with keep-alive and EOF-terminated 200 status at response/connection.md:46 ✔ should pass for type="response" (location=response/connection.md:46) (96.450598ms) ✔ HTTP/1.0 with keep-alive and EOF-terminated 200 status at response/connection.md:46 (96.782611ms) ▶ HTTP/1.0 with keep-alive and 204 status at response/connection.md:75 ✔ should pass for type="response" (location=response/connection.md:75) (111.656179ms) ✔ HTTP/1.0 with keep-alive and 204 status at response/connection.md:75 (111.891208ms) ▶ HTTP/1.1 with EOF-terminated 200 status at response/connection.md:110 ✔ should pass for type="response" (location=response/connection.md:110) (108.772088ms) ✔ HTTP/1.1 with EOF-terminated 200 status at response/connection.md:110 (108.968657ms) ▶ HTTP/1.1 with 204 status at response/connection.md:134 ✔ should pass for type="response" (location=response/connection.md:134) (137.668636ms) ✔ HTTP/1.1 with 204 status at response/connection.md:134 (137.887036ms) ▶ HTTP/1.1 with keep-alive disabled and 204 status at response/connection.md:164 ✔ should pass for type="response" (location=response/connection.md:164) (115.714662ms) ✔ HTTP/1.1 with keep-alive disabled and 204 status at response/connection.md:164 (115.946616ms) ▶ HTTP/1.1 with keep-alive disabled, content-length (lenient) at response/connection.md:191 ✔ should pass for type="response-lenient-data-after-close" (location=response/connection.md:191) (3092.593978ms) ✔ HTTP/1.1 with keep-alive disabled, content-length (lenient) at response/connection.md:191 (3092.848237ms) ▶ HTTP/1.1 with keep-alive disabled, content-length at response/connection.md:225 ✔ should pass for type="response" (location=response/connection.md:225) (134.679142ms) ✔ HTTP/1.1 with keep-alive disabled, content-length at response/connection.md:225 (134.922976ms) ▶ HTTP/1.1 with keep-alive disabled and 204 status (lenient) at response/connection.md:260 ✔ should pass for type="response-lenient-keep-alive" (location=response/connection.md:260) (3106.660513ms) ✔ HTTP/1.1 with keep-alive disabled and 204 status (lenient) at response/connection.md:260 (3106.876609ms) ▶ HTTP 101 response with Upgrade and Content-Length header at response/connection.md:293 ✔ should pass for type="response" (location=response/connection.md:293) (125.041465ms) ✔ HTTP 101 response with Upgrade and Content-Length header at response/connection.md:293 (125.265237ms) ▶ HTTP 101 response with Upgrade and Transfer-Encoding header at response/connection.md:331 ✔ should pass for type="response" (location=response/connection.md:331) (153.850012ms) ✔ HTTP 101 response with Upgrade and Transfer-Encoding header at response/connection.md:331 (154.066356ms) ▶ HTTP 200 response with Upgrade header at response/connection.md:374 ✔ should pass for type="response" (location=response/connection.md:374) (84.056248ms) ✔ HTTP 200 response with Upgrade header at response/connection.md:374 (84.25322ms) ▶ HTTP 200 response with Upgrade header and Content-Length at response/connection.md:405 ✔ should pass for type="response" (location=response/connection.md:405) (129.182473ms) ✔ HTTP 200 response with Upgrade header and Content-Length at response/connection.md:405 (129.410278ms) ▶ HTTP 200 response with Upgrade header and Transfer-Encoding at response/connection.md:442 ✔ should pass for type="response" (location=response/connection.md:442) (121.006176ms) ✔ HTTP 200 response with Upgrade header and Transfer-Encoding at response/connection.md:442 (121.251384ms) ▶ HTTP 304 with Content-Length at response/connection.md:492 ✔ should pass for type="response" (location=response/connection.md:492) (157.937111ms) ✔ HTTP 304 with Content-Length at response/connection.md:492 (158.166564ms) ▶ HTTP 304 with Transfer-Encoding at response/connection.md:537 ✔ should pass for type="response" (location=response/connection.md:537) (122.047542ms) ✔ HTTP 304 with Transfer-Encoding at response/connection.md:537 (122.2475ms) ▶ HTTP 100 first, then 400 at response/connection.md:586 ✔ should pass for type="response" (location=response/connection.md:586) (152.734301ms) ✔ HTTP 100 first, then 400 at response/connection.md:586 (152.97929ms) ▶ HTTP 103 first, then 200 at response/connection.md:641 ✔ should pass for type="response" (location=response/connection.md:641) (157.927784ms) ✔ HTTP 103 first, then 200 at response/connection.md:641 (158.130568ms) ✔ Connection header at response/connection.md:1 (8258.953088ms) ▶ Content-Length header at response/content-length.md:1 ▶ Response without `Content-Length`, but with body at response/content-length.md:4 ✔ should pass for type="response" (location=response/content-length.md:4) (252.610082ms) ✔ Response without `Content-Length`, but with body at response/content-length.md:4 (252.820136ms) ▶ Content-Length-X at response/content-length.md:80 ✔ should pass for type="response" (location=response/content-length.md:80) (122.158205ms) ✔ Content-Length-X at response/content-length.md:80 (122.344549ms) ▶ Content-Length reset when no body is received at response/content-length.md:123 ✔ should pass for type="response" (location=response/content-length.md:123) (3208.486907ms) ✔ Content-Length reset when no body is received at response/content-length.md:123 (3208.684567ms) ▶ Tabs in `Content-Length` (surrounding) at response/content-length.md:168 ✔ should pass for type="response" (location=response/content-length.md:168) (152.469599ms) ✔ Tabs in `Content-Length` (surrounding) at response/content-length.md:168 (152.678902ms) ✔ Content-Length header at response/content-length.md:1 (3736.994209ms) ▶ Transfer-Encoding header at response/transfer-encoding.md:1 ▶ Trailing space on chunked body at response/transfer-encoding.md:4 ✔ should pass for type="response" (location=response/transfer-encoding.md:4) (153.341751ms) ✔ Trailing space on chunked body at response/transfer-encoding.md:4 (153.544447ms) ▶ `chunked` before other transfer-encoding at response/transfer-encoding.md:43 ✔ should pass for type="response" (location=response/transfer-encoding.md:43) (138.150193ms) ✔ `chunked` before other transfer-encoding at response/transfer-encoding.md:43 (138.350255ms) ▶ multiple transfer-encoding where chunked is not the last one at response/transfer-encoding.md:74 ✔ should pass for type="response" (location=response/transfer-encoding.md:74) (171.685616ms) ✔ multiple transfer-encoding where chunked is not the last one at response/transfer-encoding.md:74 (171.883118ms) ▶ `chunkedchunked` transfer-encoding does not enable chunked enconding at response/transfer-encoding.md:110 ✔ should pass for type="response" (location=response/transfer-encoding.md:110) (140.924479ms) ✔ `chunkedchunked` transfer-encoding does not enable chunked enconding at response/transfer-encoding.md:110 (141.099672ms) ▶ Chunk extensions at response/transfer-encoding.md:157 ✔ should pass for type="response" (location=response/transfer-encoding.md:157) (148.271157ms) ✔ Chunk extensions at response/transfer-encoding.md:157 (148.495425ms) ▶ No semicolon before chunk extensions at response/transfer-encoding.md:212 ✔ should pass for type="response" (location=response/transfer-encoding.md:212) (166.212568ms) ✔ No semicolon before chunk extensions at response/transfer-encoding.md:212 (166.478322ms) ▶ No extension after semicolon at response/transfer-encoding.md:248 ✔ should pass for type="response" (location=response/transfer-encoding.md:248) (114.518535ms) ✔ No extension after semicolon at response/transfer-encoding.md:248 (114.763199ms) ▶ Chunk extensions quoting at response/transfer-encoding.md:284 ✔ should pass for type="response" (location=response/transfer-encoding.md:284) (152.792933ms) ✔ Chunk extensions quoting at response/transfer-encoding.md:284 (153.013003ms) ▶ Unbalanced chunk extensions quoting at response/transfer-encoding.md:345 ✔ should pass for type="response" (location=response/transfer-encoding.md:345) (138.147462ms) ✔ Unbalanced chunk extensions quoting at response/transfer-encoding.md:345 (138.374318ms) ▶ Invalid OBS fold after chunked value at response/transfer-encoding.md:389 ✔ should pass for type="response-lenient-headers" (location=response/transfer-encoding.md:389) (3104.938452ms) ✔ Invalid OBS fold after chunked value at response/transfer-encoding.md:389 (3105.183421ms) ✔ Transfer-Encoding header at response/transfer-encoding.md:1 (4432.240554ms) ▶ Invalid responses at response/invalid.md:1 ▶ Invalid space after start line at response/invalid.md:149 ▶ Extra space between HTTP version and status code at response/invalid.md:168 ✔ should pass for type="response" (location=response/invalid.md:168) (81.829329ms) ✔ Extra space between HTTP version and status code at response/invalid.md:168 (82.080281ms) ▶ Extra space between status code and reason at response/invalid.md:186 ✔ should pass for type="response" (location=response/invalid.md:186) (83.719389ms) ✔ Extra space between status code and reason at response/invalid.md:186 (83.985698ms) ▶ One-digit status code at response/invalid.md:206 ✔ should pass for type="response" (location=response/invalid.md:206) (76.36683ms) ✔ One-digit status code at response/invalid.md:206 (76.620603ms) ▶ Only LFs present and no body at response/invalid.md:224 ✔ should pass for type="response" (location=response/invalid.md:224) (127.386946ms) ✔ Only LFs present and no body at response/invalid.md:224 (127.639355ms) ▶ Only LFs present and no body (lenient) at response/invalid.md:241 ✔ should pass for type="response-lenient-all" (location=response/invalid.md:241) (3155.534507ms) ✔ Only LFs present and no body (lenient) at response/invalid.md:241 (3155.7834ms) ▶ Only LFs present at response/invalid.md:264 ✔ should pass for type="response" (location=response/invalid.md:264) (158.49812ms) ✔ Only LFs present at response/invalid.md:264 (158.759208ms) ▶ Only LFs present (lenient) at response/invalid.md:285 ✔ should pass for type="response-lenient-all" (location=response/invalid.md:285) (158.264587ms) ✔ Only LFs present (lenient) at response/invalid.md:285 (158.508585ms) ✔ Invalid space after start line at response/invalid.md:149 (3844.253117ms) ▶ Incomplete HTTP protocol at response/invalid.md:4 ✔ should pass for type="response" (location=response/invalid.md:4) (70.557022ms) ✔ Incomplete HTTP protocol at response/invalid.md:4 (70.782107ms) ▶ Extra digit in HTTP major version at response/invalid.md:19 ✔ should pass for type="response" (location=response/invalid.md:19) (82.981611ms) ✔ Extra digit in HTTP major version at response/invalid.md:19 (83.188088ms) ▶ Extra digit in HTTP major version #2 at response/invalid.md:36 ✔ should pass for type="response" (location=response/invalid.md:36) (84.427014ms) ✔ Extra digit in HTTP major version #2 at response/invalid.md:36 (84.62709ms) ▶ Extra digit in HTTP minor version at response/invalid.md:53 ✔ should pass for type="response" (location=response/invalid.md:53) (65.27803ms) ✔ Extra digit in HTTP minor version at response/invalid.md:53 (65.490321ms) ▶ Tab after HTTP version at response/invalid.md:72 ✔ should pass for type="response" (location=response/invalid.md:72) (72.296291ms) ✔ Tab after HTTP version at response/invalid.md:72 (72.580439ms) ▶ CR before response and tab after HTTP version at response/invalid.md:90 ✔ should pass for type="response" (location=response/invalid.md:90) (89.98522ms) ✔ CR before response and tab after HTTP version at response/invalid.md:90 (90.308665ms) ▶ Headers separated by CR at response/invalid.md:108 ✔ should pass for type="response" (location=response/invalid.md:108) (138.230125ms) ✔ Headers separated by CR at response/invalid.md:108 (138.545435ms) ▶ Invalid HTTP version at response/invalid.md:132 ✔ should pass for type="response" (location=response/invalid.md:132) (71.295459ms) ✔ Invalid HTTP version at response/invalid.md:132 (71.552448ms) ▶ Invalid space after start line at response/invalid.md:149 ✔ should pass for type="response" (location=response/invalid.md:149) (84.906082ms) ✔ Invalid space after start line at response/invalid.md:149 (85.117979ms) ✔ Invalid responses at response/invalid.md:1 (4607.722565ms) ▶ Finish at response/finish.md:1 ▶ It should be safe to finish with cb after empty response at response/finish.md:6 ✔ should pass for type="response-finish" (location=response/finish.md:6) (3187.88057ms) ✔ It should be safe to finish with cb after empty response at response/finish.md:6 (3188.211569ms) ✔ Finish at response/finish.md:1 (3188.585574ms) ▶ Lenient HTTP version parsing at response/lenient-version.md:1 ▶ Invalid HTTP version (lenient) at response/lenient-version.md:4 ✔ should pass for type="response-lenient-version" (location=response/lenient-version.md:4) (3227.400083ms) ✔ Invalid HTTP version (lenient) at response/lenient-version.md:4 (3227.75655ms) ✔ Lenient HTTP version parsing at response/lenient-version.md:1 (3228.016095ms) ▶ Pausing at response/pausing.md:1 ▶ on_message_begin at response/pausing.md:4 ✔ should pass for type="response" (location=response/pausing.md:4) (3186.575048ms) ✔ on_message_begin at response/pausing.md:4 (3187.278492ms) ▶ on_message_complete at response/pausing.md:32 ✔ should pass for type="response" (location=response/pausing.md:32) (3194.792714ms) ✔ on_message_complete at response/pausing.md:32 (3194.993354ms) ▶ on_version_complete at response/pausing.md:60 ✔ should pass for type="response" (location=response/pausing.md:60) (3085.285148ms) ✔ on_version_complete at response/pausing.md:60 (3085.486178ms) ▶ on_status_complete at response/pausing.md:88 ✔ should pass for type="response" (location=response/pausing.md:88) (3137.489604ms) ✔ on_status_complete at response/pausing.md:88 (3137.68156ms) ▶ on_header_field_complete at response/pausing.md:116 ✔ should pass for type="response" (location=response/pausing.md:116) (2977.475256ms) ✔ on_header_field_complete at response/pausing.md:116 (2977.689325ms) ▶ on_header_value_complete at response/pausing.md:144 ✔ should pass for type="response" (location=response/pausing.md:144) (3208.800178ms) ✔ on_header_value_complete at response/pausing.md:144 (3209.038198ms) ▶ on_headers_complete at response/pausing.md:172 ✔ should pass for type="response" (location=response/pausing.md:172) (3188.628114ms) ✔ on_headers_complete at response/pausing.md:172 (3188.818108ms) ▶ on_chunk_header at response/pausing.md:200 ✔ should pass for type="response" (location=response/pausing.md:200) (3262.271889ms) ✔ on_chunk_header at response/pausing.md:200 (3262.472134ms) ▶ on_chunk_extension_name at response/pausing.md:237 ✔ should pass for type="response" (location=response/pausing.md:237) (3180.024491ms) ✔ on_chunk_extension_name at response/pausing.md:237 (3180.398007ms) ▶ on_chunk_extension_value at response/pausing.md:277 ✔ should pass for type="response" (location=response/pausing.md:277) (3176.289406ms) ✔ on_chunk_extension_value at response/pausing.md:277 (3176.545732ms) ▶ on_chunk_complete at response/pausing.md:317 ✔ should pass for type="response" (location=response/pausing.md:317) (3011.642361ms) ✔ on_chunk_complete at response/pausing.md:317 (3011.86999ms) ✔ Pausing at response/pausing.md:1 (34613.408924ms) ▶ Pipelining at response/pipelining.md:1 ▶ Should parse multiple events at response/pipelining.md:4 ✔ should pass for type="response" (location=response/pipelining.md:4) (202.336723ms) ✔ Should parse multiple events at response/pipelining.md:4 (202.527682ms) ✔ Pipelining at response/pipelining.md:1 (202.707074ms) ▶ URL tests at url.md:1 ▶ Absolute URL at url.md:3 ✔ should pass for type="url" (location=url.md:3) (1542.401275ms) ✔ Absolute URL at url.md:3 (1542.600072ms) ▶ Relative URL at url.md:17 ✔ should pass for type="url" (location=url.md:17) (97.18059ms) ✔ Relative URL at url.md:17 (97.38875ms) ▶ Failing on broken schema at url.md:29 ✔ should pass for type="url" (location=url.md:29) (10.9654ms) ✔ Failing on broken schema at url.md:29 (11.137778ms) ▶ Proxy request at url.md:41 ✔ should pass for type="url" (location=url.md:41) (58.272338ms) ✔ Proxy request at url.md:41 (58.464484ms) ▶ Proxy request with port at url.md:53 ✔ should pass for type="url" (location=url.md:53) (65.309124ms) ✔ Proxy request with port at url.md:53 (65.501793ms) ▶ Proxy IPv6 request at url.md:65 ✔ should pass for type="url" (location=url.md:65) (67.012458ms) ✔ Proxy IPv6 request at url.md:65 (67.208681ms) ▶ Proxy IPv6 request with port at url.md:77 ✔ should pass for type="url" (location=url.md:77) (74.765102ms) ✔ Proxy IPv6 request with port at url.md:77 (74.963366ms) ▶ IPv4 in IPv6 address at url.md:89 ✔ should pass for type="url" (location=url.md:89) (157.643177ms) ✔ IPv4 in IPv6 address at url.md:89 (157.872094ms) ▶ Extra `?` in query string at url.md:101 ✔ should pass for type="url" (location=url.md:101) (164.945168ms) ✔ Extra `?` in query string at url.md:101 (165.163418ms) ▶ URL encoded space at url.md:116 ✔ should pass for type="url" (location=url.md:116) (67.435919ms) ✔ URL encoded space at url.md:116 (67.662233ms) ▶ URL fragment at url.md:127 ✔ should pass for type="url" (location=url.md:127) (45.697892ms) ✔ URL fragment at url.md:127 (45.890233ms) ▶ Complex URL fragment at url.md:138 ✔ should pass for type="url" (location=url.md:138) (115.292341ms) ✔ Complex URL fragment at url.md:138 (115.484946ms) ▶ Complex URL from node.js url parser doc at url.md:153 ✔ should pass for type="url" (location=url.md:153) (129.299906ms) ✔ Complex URL from node.js url parser doc at url.md:153 (129.498423ms) ▶ Complex URL with basic auth from node.js url parser doc at url.md:167 ✔ should pass for type="url" (location=url.md:167) (68.618991ms) ✔ Complex URL with basic auth from node.js url parser doc at url.md:167 (68.792559ms) ▶ Double `@` at url.md:181 ✔ should pass for type="url" (location=url.md:181) (3.263677ms) ✔ Double `@` at url.md:181 (3.393146ms) ▶ Proxy basic auth with url encoded space at url.md:193 ✔ should pass for type="url" (location=url.md:193) (69.095119ms) ✔ Proxy basic auth with url encoded space at url.md:193 (69.25586ms) ▶ Proxy basic auth with unreserved chars at url.md:205 ✔ should pass for type="url" (location=url.md:205) (69.892857ms) ✔ Proxy basic auth with unreserved chars at url.md:205 (70.069072ms) ▶ IPv6 address with Zone ID at url.md:217 ✔ should pass for type="url" (location=url.md:217) (68.766592ms) ✔ IPv6 address with Zone ID at url.md:217 (68.949719ms) ▶ IPv6 address with Zone ID, but `%` is not percent-encoded at url.md:229 ✔ should pass for type="url" (location=url.md:229) (62.782798ms) ✔ IPv6 address with Zone ID, but `%` is not percent-encoded at url.md:229 (62.973225ms) ▶ Disallow tab in URL at url.md:241 ✔ should pass for type="url" (location=url.md:241) (2.998766ms) ✔ Disallow tab in URL at url.md:241 (3.14512ms) ▶ Disallow form-feed in URL at url.md:252 ✔ should pass for type="url" (location=url.md:252) (3.097903ms) ✔ Disallow form-feed in URL at url.md:252 (3.23167ms) ✔ URL tests at url.md:1 (2950.504964ms) ℹ tests 267 ℹ suites 300 ℹ pass 267 ℹ fail 0 ℹ cancelled 0 ℹ skipped 0 ℹ todo 0 ℹ duration_ms 169330.868376 >>> llhttp: Entering fakeroot... -- Install configuration: "MINSIZEREL" -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/libllhttp.so.9.4.1 -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/libllhttp.so.9.4 -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/libllhttp.so -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/include/llhttp.h -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/pkgconfig/libllhttp.pc -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/cmake/llhttp/llhttp-targets.cmake -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/cmake/llhttp/llhttp-targets-minsizerel.cmake -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/cmake/llhttp/llhttpConfig.cmake -- Installing: /home/buildozer/aports/community/llhttp/pkg/llhttp/usr/lib/cmake/llhttp/llhttpConfigVersion.cmake >>> llhttp-dev*: Running split function dev... 'usr/include' -> '/home/buildozer/aports/community/llhttp/pkg/llhttp-dev/usr/include' 'usr/lib/pkgconfig' -> '/home/buildozer/aports/community/llhttp/pkg/llhttp-dev/usr/lib/pkgconfig' 'usr/lib/cmake' -> '/home/buildozer/aports/community/llhttp/pkg/llhttp-dev/usr/lib/cmake' 'usr/lib/libllhttp.so' -> '/home/buildozer/aports/community/llhttp/pkg/llhttp-dev/usr/lib/libllhttp.so' >>> llhttp-dev*: Preparing subpackage llhttp-dev... >>> llhttp-dev*: Stripping binaries >>> llhttp-dev*: Running postcheck for llhttp-dev >>> llhttp-doc*: Running split function doc... 'usr/share/doc' -> '/home/buildozer/aports/community/llhttp/pkg/llhttp-doc/usr/share/doc' >>> llhttp-doc*: Preparing subpackage llhttp-doc... >>> llhttp-doc*: Running postcheck for llhttp-doc >>> llhttp*: Running postcheck for llhttp >>> llhttp*: Preparing package llhttp... >>> llhttp*: Stripping binaries >>> llhttp*: Scanning shared objects >>> llhttp-dev*: Scanning shared objects >>> llhttp-dev*: Tracing dependencies... llhttp=9.4.1-r0 pkgconfig >>> llhttp-dev*: Package size: 39.8 KB >>> llhttp-dev*: Compressing data... >>> llhttp-dev*: Create checksum... >>> llhttp-dev*: Create llhttp-dev-9.4.1-r0.apk >>> llhttp-doc*: Tracing dependencies... >>> llhttp-doc*: Package size: 1.0 KB >>> llhttp-doc*: Compressing data... >>> llhttp-doc*: Create checksum... >>> llhttp-doc*: Create llhttp-doc-9.4.1-r0.apk >>> llhttp*: Tracing dependencies... so:libc.musl-x86.so.1 >>> llhttp*: Package size: 65.2 KB >>> llhttp*: Compressing data... >>> llhttp*: Create checksum... >>> llhttp*: Create llhttp-9.4.1-r0.apk >>> llhttp: Build complete at Wed, 03 Jun 2026 13:46:27 +0000 elapsed time 0h 3m 7s >>> llhttp: Cleaning up srcdir >>> llhttp: Cleaning up pkgdir >>> llhttp: Cleaning up tmpdir >>> llhttp: Uninstalling dependencies... ( 1/24) Purging .makedepends-llhttp (20260603.134321) ( 2/24) Purging cmake (4.2.3-r0) ( 3/24) Purging samurai (1.2-r8) ( 4/24) Purging npm (11.12.1-r0) ( 5/24) Purging nodejs (24.16.0-r0) ( 6/24) Purging ca-certificates (20260413-r0) Executing ca-certificates-20260413-r0.post-deinstall ( 7/24) Purging ada-libs (3.3.0-r0) ( 8/24) Purging clang22 (22.1.3-r2) ( 9/24) Purging llvm22-linker-tools (22.1.3-r0) (10/24) Purging clang22-headers (22.1.3-r2) (11/24) Purging clang22-libs (22.1.3-r2) (12/24) Purging icu-libs (78.1-r0) (13/24) Purging libarchive (3.8.7-r0) (14/24) Purging libbz2 (1.0.8-r6) (15/24) Purging libuv (1.52.1-r0) (16/24) Purging llvm22-libs (22.1.3-r0) (17/24) Purging rhash-libs (1.4.6-r0) (18/24) Purging simdjson (4.2.4-r0) (19/24) Purging simdutf (9.0.0-r0) (20/24) Purging sqlite-libs (3.53.1-r0) (21/24) Purging icu-data-en (78.1-r0) (22/24) Purging libffi (3.5.2-r1) (23/24) Purging libxml2 (2.13.9-r2) (24/24) Purging xz-libs (5.8.3-r0) Executing busybox-1.37.0-r31.trigger OK: 426.1 MiB in 105 packages >>> llhttp: Updating the community/x86 repository index... >>> llhttp: Signing the index...