Issue running Test #294
-
I am unsure if I am running the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
These tests are not really compiled and tested on all platforms. They're just there to generate the images in the documentation.
This is definitely not true. In fact, it's more likely to fail on MSVC and work on GCC/Clang.
I don't see how this is related to it working on MSVC. But it's common practice to have the This is not considered in-source builds at all. All artifacts are isolated in this
You don't have to create the directories in
This is definitely a logic error throwing an exception. I haven't used it in a while because we already generated all examples and don't need to rerun that that often. The only way to know why it's failing is to debug it. My hypothesis is the directory and file names have changed in the meanwhile and the regular expressions no longer work.
You can do that locally, but it doesn't sound like a good idea. That's not a good test because it's not a unit test or anything like that. |
Beta Was this translation helpful? Give feedback.
These tests are not really compiled and tested on all platforms. They're just there to generate the images in the documentation.
This is definitely not true. In fact, it's more likely to fail on MSVC and work on GCC/Clang.
I don't see how this is related to it working on MSVC. But it's common practice to have the
build
, orcmake-build-debug
, orout
, or any common name for the build directory in the root directory.This is not considered in-source builds at all. All artifacts are isolated in this
build
directory. It's exactly how most IDEs do that.