Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libc / test / src / network / CMakeLists.txt
blob222205dfe247a60be22bdf6e2691e8b560ed2eb4
1 add_custom_target(libc_network_unittests)
3 add_libc_unittest(
4   htonl
5   SUITE
6     libc_network_unittests
7   SRCS
8     htonl_test.cpp
9   CXX_STANDARD
10     20
11   DEPENDS
12     libc.src.network.htonl
13     libc.src.network.ntohl
16 add_libc_unittest(
17   htons
18   SUITE
19     libc_network_unittests
20   SRCS
21     htons_test.cpp
22   CXX_STANDARD
23     20
24   DEPENDS
25     libc.src.network.htons
26     libc.src.network.ntohs
29 add_libc_unittest(
30   ntohl
31   SUITE
32     libc_network_unittests
33   SRCS
34     ntohl_test.cpp
35   CXX_STANDARD
36     20
37   DEPENDS
38     libc.src.network.htonl
39     libc.src.network.ntohl
42 add_libc_unittest(
43   ntohs
44   SUITE
45     libc_network_unittests
46   SRCS
47     ntohs_test.cpp
48   CXX_STANDARD
49     20
50   DEPENDS
51     libc.src.network.htons
52     libc.src.network.ntohs