Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Cleanup: test-logs are written to third_party/$TEST/... #382
Comments
|
Has to do with the way the batch scripts are generated for the tests that require to be run in batch mode, Google, Yosys... |
When running the regression, the resulting logs seem to end up in
third_party/tests/$TEST/.... This of course is not unnoticed by git, so a git status shows a ton of non-added new files added.To reproduce:
make make regression git status # observe all the filesBuild or test artifacts should never clutter the rest of the code-base (we should regard them as read-only in fact), so we should move them to some output directory in
build/. Probably as simple as changing a path somewhere.Good first issue.