Willem Deconinck

Results 88 comments of Willem Deconinck

Is it possible to run in your build-dir ``` ctest -R get_eckit_test_data ``` or do you also compile on a system without network connection? It gets quite tricky to know...

This is really independent of ecbuild, but rather a general CMake question. The older CMake way was to get the [LOCATION property](https://cmake.org/cmake/help/latest/prop_tgt/LOCATION.html) from a target via ```cmake get_target_property( LOCATION) ```...

Thanks for bringing this to my attention. I will try to reproduce, create a test and fix asap.

Following reproducer doesn't reproduce it for me... Could you double check? ```c++ #include #include "eckit/runtime/Main.h" #include "eckit/mpi/Comm.h" #include "atlas/parallel/mpi/mpi.h" int main(int argc, char* argv[]) { eckit::Main::initialise(argc,argv); int irank = eckit::mpi::comm().rank();...

Thank you for the new reproducer. I could simplify it a bit: ```c++ #include #include "eckit/runtime/Main.h" #include "eckit/mpi/Comm.h" #include "atlas/parallel/mpi/mpi.h" int main(int argc, char* argv[]) { eckit::Main::initialise(argc,argv); int irank =...

Hello thanks for your suggestions. After some internal discussions we do agree that some flags, e.g. '-check all' may be problematic for legacy projects especially. We will review all flags...

@mo-lormi concerning the "missing" part in the Gmsh plot, is nothing to worry about. That's because the StructuredColumns fields are unlike NodeColumns and don't have extra duplicated nodes at 360...

I have a question.. How do we manage a bundle where test-data may possibly be distributed over multiple test-data servers? We would have to modify the variable "ECBUILD_DOWNLOAD_BASE_URL" for each...