1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-31 12:23:52 +03:00

r19180: 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:46:39 +00:00
committed by Gerald (Jerry) Carter
parent 82abc39b55
commit e89ae157e8

View File

@@ -161,7 +161,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 "=========================================="