-
Notifications
You must be signed in to change notification settings - Fork 699
test target dependencies are incomplete #1086
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
Comments
Had a quick look at this today. There are two possible workarounds:
The problem with #2 is: Note: LLVM does exactly #2. Let me know what you guys think and I'll either do a quick attempt at #2 or I'll close the issue. |
I am okay with calling ninja check instead of ninja test. |
CC @compnerd |
RE: 1. I always use |
Fixed with commit 1116b5a. Now, ninja check will do the re-build + test. |
One thing I noticed, the dependencies are not correct in the cmake. In effect, if you run
ninja test
without building glow first, it will fail because the tests don't depend on glow being built. This is problematic as we may update glow, forget to rebuild, and run the tests and think that everything is okay whereas we would run the old code.The text was updated successfully, but these errors were encountered: