[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Chicken-hackers] Test suite available in CMake build branch
From: |
Oleg Kolosov |
Subject: |
[Chicken-hackers] Test suite available in CMake build branch |
Date: |
Sat, 19 Jul 2014 22:10:04 +0400 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 |
Hello CHICKEN developers!
I am happy to announce the conversion of the test suite to CMake. It is
not complete yet, but getting there.
You can see for yourself:
git clone https://github.com/bazurbat/chicken-scheme.git
cd chicken-scheme
git checkout cmake-build
mkdir build && cd build
cmake ..
cmake --build . && cmake --build . --target tests
ctest -j3 # -j<number> parallel testing jobs
This works with Visual Studio too (some tests fail, TBD).
If you have Ninja (http://martine.github.io/ninja/) installed, you can
pass it as a generator to CMake for faster builds.
cmake -GNinja ..
ninja && ninja tests
Parallel builds are also supported for default make generator:
make -j3 && make -j3 tests
Enjoy!
--
Regards, Oleg
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Chicken-hackers] Test suite available in CMake build branch,
Oleg Kolosov <=