blob: ee710bcdb9ca967b7729080d42fa97c2c0cd16e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# SPDX-License-Identifier: GPL-2.0-only
tests-y += helpers-test
tests-y += gcd-test
tests-y += ipchksum-test
tests-y += string-test
helpers-test-srcs += tests/commonlib/bsd/helpers-test.c
gcd-test-srcs += tests/commonlib/bsd/gcd-test.c
gcd-test-srcs += src/commonlib/bsd/gcd.c
ipchksum-test-srcs += tests/commonlib/bsd/ipchksum-test.c
ipchksum-test-srcs += src/commonlib/bsd/ipchksum.c
string-test-srcs += tests/commonlib/bsd/string-test.c
string-test-srcs += src/commonlib/bsd/string.c
|