1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r19181: merge from samba4:

with "export MAKE_TEST_KEEP_PCAP=yes" make test
doesn't delete the generated pcap files

metze
This commit is contained in:
Stefan Metzmacher 2006-10-09 06:48:55 +00:00 committed by Gerald (Jerry) Carter
parent e97e1ffea8
commit 74212c3056

View File

@ -228,7 +228,12 @@ testit() {
fi
return 1;
fi
rm -f $TEST_LOG $TEST_PCAP;
rm -f $TEST_LOG;
if [ x"$MAKE_TEST_KEEP_PCAP" = x"yes" ];then
echo "TEST PCAP: $TEST_PCAP"
else
rm -f $TEST_PCAP;
fi
if [ x"$RUN_FROM_BUILD_FARM" = x"yes" ];then
echo "ALL OK: $cmdline"
echo "=========================================="