diff --git a/test/run_tests3 b/test/run_tests3
new file mode 100755
index 0000000000000000000000000000000000000000..a065f18912481d881c20415878bed7aed38f4fde
--- /dev/null
+++ b/test/run_tests3
@@ -0,0 +1,9 @@
+#! /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