Add URL parsing test suite from web-platform-tests/wpt

This commit is contained in:
2025-12-06 01:10:04 +01:00
parent 1c54c8ae28
commit 93a4f37315
9 changed files with 14268 additions and 65 deletions
+13
View File
@@ -0,0 +1,13 @@
.PHONY: all clean
ifeq ($(shell uname -s),Windows_NT)
EXT = .exe
else
EXT =
endif
all:
gcc -o test$(EXT) test.c ../url.c cJSON.c -Wall -Wextra -ggdb
clean:
rm test test.exe