From 8de4ffeee76eb7fe7c22a20509d11072635188f6 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Mon, 11 Dec 2023 15:58:47 -0500 Subject: [PATCH] Fixed location where compiler defines are stored internally. --- lib/ceedling/test_invoker.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ceedling/test_invoker.rb b/lib/ceedling/test_invoker.rb index 87c4661e..4447cb1f 100644 --- a/lib/ceedling/test_invoker.rb +++ b/lib/ceedling/test_invoker.rb @@ -362,7 +362,7 @@ def compile_test_component(tool:TOOLS_TEST_COMPILER, context:TEST_SYM, test:, so testable = @testables[test] filepath = testable[:filepath] flags = testable[:compile_flags] - defines = testable[:defines] + defines = testable[:compile_defines] # Tailor search path--remove duplicates and reduce list to only those needed by vendor / support file compilation search_paths = @helper.tailor_search_paths(search_paths:testable[:search_paths], filepath:source)