-
Notifications
You must be signed in to change notification settings - Fork 23
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
feat(test): run tests and update build result #88
Conversation
JohelEGP
commented
Jun 6, 2023
•
edited
Loading
edited
- More field testing.
- Copy to the repository results that differ from the previous compiler version only.
This is less wasteful as it makes use of the output of existing tests. It should simplify adding support for running the tests.
Ordering by relative cost reduces turnarounds. Previously, codegen update happened last.
Although the project's language is now `CXX`, the setup of the C++ environment is as was before. I.e., - The environment of the build test can only be set globally (through CMake defaults, the environment, etc.). - The environment of this project should match that of the build test. It doesn't attempt to propagate any aspect explicitly.
ddc1d0e
to
ed9d696
Compare
# There's `CMAKE_CXX_LINKER_LAUNCHER`, too. So far, it's not needed. | ||
"-DCMAKE_CXX_COMPILER_LAUNCHER=${CMAKE_COMMAND};-D;OUTPUT_FILE=${gen_cpp_src}.output;-P;../../ExecuteWithRedirection.cmake;--" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These only work with "The Makefile Generators and the Ninja generator".
The alternative is CMAKE_EXPORT_COMPILE_COMMANDS
.
I already handle that at https://github.com/JohelEGP/jegp.cmake_modules/blob/master/modules/.detail/JEGPReadExportedCompileCommand.cmake.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would still need to build and install.
So I'd compile twice to get the output.
Maybe I can hijack CMAKE_CXX_COMPILER
and use it like CMAKE_CXX_COMPILER_LAUNCHER
.
cb7f504
to
65a99b9
Compare
d54db4d
to
a74594f
Compare
a74594f
to
369aa23
Compare
Test results will be updated, so make the tests use those results without a reconfiguration in-between. Also, trigger reconfiguration to add the `check` tests.
3f7138d
to
cb0a142
Compare
All this would be much simpler |
I agree, but @hsutter didn't want to include a CMake build in the upstream cppfront, at least not yet. See the discussion here: hsutter/cppfront#15 (comment) It has been some time now, though -- perhaps Herb would be willing to reconsider? |
Also, is this ready to review? |
Yes, since #88 (comment).
I was hoping we wouldn't be blocked on that. I've also found the need to manually specify the tests' build type as |
c1502d6
to
963462c
Compare
caeece5
to
08de0a6
Compare
Hey, sorry I took so long to get back to this -- merging now... |