mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Merge branch 'master' into bill/const-union
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
#+test
|
||||||
package encoding_base32
|
package encoding_base32
|
||||||
|
|
||||||
import "core:testing"
|
import "core:testing"
|
||||||
|
|||||||
@@ -6561,6 +6561,10 @@ gb_internal bool parse_file_tag(const String &lc, const Token &tok, AstFile *f)
|
|||||||
} else if (string_starts_with(lc, str_lit("vet"))) {
|
} else if (string_starts_with(lc, str_lit("vet"))) {
|
||||||
f->vet_flags = parse_vet_tag(tok, lc);
|
f->vet_flags = parse_vet_tag(tok, lc);
|
||||||
f->vet_flags_set = true;
|
f->vet_flags_set = true;
|
||||||
|
} else if (string_starts_with(lc, str_lit("test"))) {
|
||||||
|
if ((build_context.command_kind & Command_test) == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} else if (string_starts_with(lc, str_lit("ignore"))) {
|
} else if (string_starts_with(lc, str_lit("ignore"))) {
|
||||||
return false;
|
return false;
|
||||||
} else if (string_starts_with(lc, str_lit("private"))) {
|
} else if (string_starts_with(lc, str_lit("private"))) {
|
||||||
|
|||||||
Reference in New Issue
Block a user