mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-16 15:57:00 +00:00
13 lines
326 B
Bash
Executable file
13 lines
326 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Minimal regression test suite.
|
|
|
|
if [ ! -d tests/outputs ]; then
|
|
mkdir tests/outputs
|
|
fi
|
|
|
|
dhcpd-pools -f X -c $top_srcdir/tests/confs/same-twice \
|
|
-l $top_srcdir/tests/leases/same-twice \
|
|
-o tests/outputs/same-twice-xml
|
|
diff -u $top_srcdir/tests/expected/same-twice-xml tests/outputs/same-twice-xml
|
|
exit $?
|