diff options
| -rw-r--r-- | suite/testcommon.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/suite/testcommon.py b/suite/testcommon.py index d8a591c4..3c9fc28e 100644 --- a/suite/testcommon.py +++ b/suite/testcommon.py @@ -1157,7 +1157,11 @@ class TestBuilder(Builder): self.delete_package("type_xref.bndb") return sorted(retinfo) - def test_search(self): + # INSANE HACK AHEAD + # The name `test_all_search` is VERY special here. It reorders this test to + # before the binary tests. This is EXTREMELY important to the speed of the + # unit tests on Linux. No one knows why. There be dragons here. + def test_all_search(self): """Search""" retinfo = [] file_name = self.unpackage_file("type_xref.bndb") |
