mirror of https://github.com/secdev/scapy.git
10 lines
301 B
Plaintext
10 lines
301 B
Plaintext
|
#! /bin/sh
|
||
|
DIR=$(dirname $0)/..
|
||
|
PYTHON=python3
|
||
|
if [ -z "$*" ]
|
||
|
then
|
||
|
PYTHONPATH=$DIR exec $PYTHON ${DIR}/scapy/tools/UTscapy.py -t regression.uts -f html -K ipv6 -l -o /tmp/scapy_regression_test_$(date +%Y%m%d-%H%M%S).html
|
||
|
else
|
||
|
PYTHONPATH=$DIR exec $PYTHON ${DIR}/scapy/tools/UTscapy.py "$@"
|
||
|
fi
|