Allow @(test) to be ran outside of *_test.odin files

This commit is contained in:
gingerBill
2021-04-28 10:49:40 +01:00
parent 24fce21d90
commit 102c29575b

View File

@@ -1873,7 +1873,8 @@ void generate_minimum_dependency_set(Checker *c, Entity *start) {
continue;
}
if (e->file == nullptr || !e->file->is_test) {
// if (e->file == nullptr || !e->file->is_test) {
if (e->file == nullptr) {
continue;
}