diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-27 14:13:28 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-27 14:13:28 +0100 |
| commit | e9f6456b523984267461154a340f04dffe375608 (patch) | |
| tree | e0f67c0866ceb16271e3501e1098a86e265cf1df /src/build_settings.cpp | |
| parent | af83c30b6f5303dfddf8e38019c0431658b6e176 (diff) | |
Remove `_test.odin` filter
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 8 |
1 files changed, 0 insertions, 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; |