From e9f6456b523984267461154a340f04dffe375608 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 27 Sep 2025 14:13:28 +0100 Subject: [PATCH] Remove `_test.odin` filter --- src/build_settings.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 11e269776..a8d74d1da 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -968,14 +968,6 @@ gb_internal bool is_excluded_target_filename(String name) { return true; } - if (build_context.command_kind != Command_test) { - String test_suffix = str_lit("_test"); - if (string_ends_with(name, test_suffix) && name != test_suffix) { - // Ignore *_test.odin files - return true; - } - } - String str1 = {}; String str2 = {}; isize n = 0;