freebsd-dev/tools/regression/lib/libc/net/Makefile
Robert Watson 9af491e24b Add regression tests for ethers(3) functions, including new _r variants.
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.
2007-05-13 14:03:21 +00:00

13 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}