diff --git a/Makefile b/Makefile index 4fb54cda..4f8ab60b 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ build: ## Build in debug mode build-dev: @printf "\e[36mBuilding (debug)...\e[0m\n" - @$(ZIG) build -Dgit_commit=$$(git rev-parse --short HEAD) || (printf "\e[33mBuild ERROR\e[0m\n"; exit 1;) + @$(ZIG) build -Dgit_commit=$$(git rev-parse --short HEAD) -Dlog_level=debug || (printf "\e[33mBuild ERROR\e[0m\n"; exit 1;) @printf "\e[33mBuild OK\e[0m\n" ## Run the server in debug mode @@ -77,6 +77,10 @@ run: build @printf "\e[36mRunning...\e[0m\n" @./zig-out/bin/lightpanda || (printf "\e[33mRun ERROR\e[0m\n"; exit 1;) +run-debug: build-dev + @printf "\e[36mRunning...\e[0m\n" + @./zig-out/bin/lightpanda || (printf "\e[33mRun ERROR\e[0m\n"; exit 1;) + ## Run a JS shell in debug mode shell: @printf "\e[36mBuilding shell...\e[0m\n" diff --git a/tests/wpt b/tests/wpt index ea16a1e3..3a362d3f 160000 --- a/tests/wpt +++ b/tests/wpt @@ -1 +1 @@ -Subproject commit ea16a1e361daf4fa68a18b50cd006e90651bf03a +Subproject commit 3a362d3f23ee7809e2a0f6ddfe2648e462998403