소스 검색

Remove `_test.odin` filter

gingerBill 2 주 전
부모
커밋
e9f6456b52
1개의 변경된 파일0개의 추가작업 그리고 8개의 파일을 삭제
  1. 0 8
      src/build_settings.cpp

+ 0 - 8
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;