]> granicus.if.org Git - libevent/commit
Only test the event backends available on the system.
authorJoakim Soderberg <joakim.soderberg@gmail.com>
Mon, 16 Dec 2013 15:37:51 +0000 (16:37 +0100)
committerJoakim Soderberg <joakim.soderberg@gmail.com>
Mon, 16 Dec 2013 15:37:51 +0000 (16:37 +0100)
commit7ea4159d2924f7f1beb24e9d506cb88791b4ce36
treefbaf25a191a7421df44f7996798b6fc050592174
parent8f2af50f385d1bf93af48d59960440e8ca48bf3a
Only test the event backends available on the system.

Fix how the CMake project adds the tests using the different backends. At
first we tried to do it exactly as it's done in test/test.sh.

However, test.sh uses a special program test-init to decide if a given
backend is available or not before running the actual tests. Doing it this way
will not be possible using CMake. Since then we would have to have the
test-init executable compiled at the time we run CMake, to know what tests
we should add. (And since CMake generates the make/project files that
compiles the executables, there's a catch 22).

Instead of deciding what tests to run this way, we simply use the result
of the CMake system introspection (that figures out what backends are
available) to decide what backend tests to add.
CMakeLists.txt