You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
342 B
11 lines
342 B
7 months ago
|
#! /bin/sh
|
||
|
DIR=$(dirname $0)/..
|
||
|
PYTHON=${PYTHON:-python}
|
||
|
PYTHONDONTWRITEBYTECODE="True"
|
||
|
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
|