mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
Four tests currently fail: test_ether_line_bad_1() and test_ether_line_bad_2() due to bugs in ether_line(3). test_ether_ntohost() and test_ether_hostton() due to not being fully implemented tests.
12 lines
211 B
Makefile
12 lines
211 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-ether test-eui64_aton test-eui64_line test-eui64_ntoa
|
|
CFLAGS+= -g -Wall
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|