You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's really no reason why there should be separate "legacy" and "unit" tests. Let's just move them all into one directory. It may speed up some builds a little bit: as one portion of the build is about to end, e.g. with a build using configure and make, you get a period where the very last source file is compiling and all other cores sit idle, even though they could move on to the next portion of the build.
(CMake with Ninja also solves this, but for development I prefer the easy control I have with configure.)
The text was updated successfully, but these errors were encountered:
There really wasn't much point to having "unit" tests and story tests
("legacy" tests, really) in separate directories. Sweep them all
together into a single directory — it's simpler, and possibly faster
on some build systems.
There's really no reason why there should be separate "legacy" and "unit" tests. Let's just move them all into one directory. It may speed up some builds a little bit: as one portion of the build is about to end, e.g. with a build using
configure
andmake
, you get a period where the very last source file is compiling and all other cores sit idle, even though they could move on to the next portion of the build.(CMake with Ninja also solves this, but for development I prefer the easy control I have with
configure
.)The text was updated successfully, but these errors were encountered: