-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
intTests create many intermediate files not tracked by git #1067
Comments
I think the appropriate thing to do in many cases is actually
Several integration tests already do this for temporary files that are created earlier in the same script. In the case of I'd say that we probably shouldn't be using |
That sounds reasonable to me. |
My first inclination was to write a script that traverses each Some other possibilities for a cleaning script:
|
#796 did some cleanup of the |
After running
intTests/runtests.sh
, mygit
tree is left in a significantly dirtier state:This makes making changes to the
intTests
directory more annoying, since you have to avoid accidentallygit add
ing these files. It seems like most of these files are autogenerated during the course of running the integration tests, so we should audit each file and either:.gitignore
file, or.bc
files, might actually differ between different LLVM versions / operating systems / etc., so checking them in might make these tests more portable. But this would need to be evaluated on a case-by-case basis.The text was updated successfully, but these errors were encountered: