mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 19:22:33 +00:00
Allow @(test) to be ran outside of *_test.odin files
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user