From 1182760a7c027aa964ede1fd8dacb0316a735dc8 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sun, 19 Apr 2026 01:34:54 +0100 Subject: [PATCH] Bind gtest colour to QMKs 'COLOR' variable (#26159) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fe6623fdf69..2d10c4ade1e 100644 --- a/Makefile +++ b/Makefile @@ -313,7 +313,7 @@ define BUILD_TEST TEST_MSG := $$(MSG_TEST) $$(TEST_FULL_NAME)_COMMAND := \ printf "$$(TEST_MSG)\n"; \ - $$(TEST_EXECUTABLE); \ + $$(TEST_EXECUTABLE) --gtest_color=$$(COLOR); \ if [ $$$$? -gt 0 ]; \ then error_occurred=1; \ fi; \