xref: /llvm-project/libc/test/src/assert/CMakeLists.txt (revision e831f73ac034f3a43aa9dcccf7ceb7b269089ef6)
1add_custom_target(libc_assert_unittests)
2
3add_libc_unittest(
4  assert_test
5  SUITE
6    libc_assert_unittests
7  SRCS
8    assert_test.cpp
9  DEPENDS
10    libc.src.assert.__assert_fail
11    # These are necessary for now because dependencies are not properly added.
12    libc.src.signal.raise
13    libc.src.stdlib._Exit
14    libc.src.stdlib.abort
15)
16