Re: [CMake] Run a single test without parallelism

2019-04-12 Thread Dzenan Zukic via CMake
Thank you, that's exactly what I was looking for! On Fri, Apr 12, 2019 at 12:19 PM Sergei Nikulov wrote: > Check RUN_SERIAL option for test > > > https://cmake.org/cmake/help/v3.14/prop_test/RUN_SERIAL.html?highlight=run_serial > > > пт, 12 апр. 2019 г., 19:09 Dzenan Zukic via CMake : > >> Hi ev

Re: [CMake] Run a single test without parallelism

2019-04-12 Thread Sergei Nikulov
Check RUN_SERIAL option for test https://cmake.org/cmake/help/v3.14/prop_test/RUN_SERIAL.html?highlight=run_serial пт, 12 апр. 2019 г., 19:09 Dzenan Zukic via CMake : > Hi everybody, > > is there a way to prevent a test being run concurrently? I have a few > tests which consume gigabytes of RAM

[CMake] Run a single test without parallelism

2019-04-12 Thread Dzenan Zukic via CMake
Hi everybody, is there a way to prevent a test being run concurrently? I have a few tests which consume gigabytes of RAM, and when tests are being run in parallel (e.g. -j5) some of them non-deterministically fail due to memory allocation errors. Running most of the tests in parallel is an imperat