mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
Allow @(test) to be ran outside of *_test.odin files
This commit is contained in:
+2
-1
@@ -1873,7 +1873,8 @@ void generate_minimum_dependency_set(Checker *c, Entity *start) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e->file == nullptr || !e->file->is_test) {
|
// if (e->file == nullptr || !e->file->is_test) {
|
||||||
|
if (e->file == nullptr) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user