Skip to content

Commit a13a05c

Browse files
authored
Merge pull request #1275 from karpierz/fix_test_batches
fix command line parameter in test\run_tests_py2/3.bat
2 parents 3f6e47d + 0c80b90 commit a13a05c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/run_tests_py2.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set PYTHONPATH=%MYDIR%
55
if [%1]==[] (
66
python "%MYDIR%\scapy\tools\UTscapy.py" -c configs\\windows2.utsc -T bpf.uts -T linux.uts -o scapy_regression_test_%date:~6,4%_%date:~3,2%_%date:~0,2%.html
77
) else (
8-
python "%MYDIR%\scapy\tools\UTscapy.py" %@
8+
python "%MYDIR%\scapy\tools\UTscapy.py" %*
99
)
1010
PAUSE

test/run_tests_py3.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ set PYTHONDONTWRITEBYTECODE=True
66
if [%1]==[] (
77
python3 "%MYDIR%\scapy\tools\UTscapy.py" -c configs\\windows2.utsc -T bpf.uts -T linux.uts -o scapy_py3_regression_test_%date:~6,4%_%date:~3,2%_%date:~0,2%.html
88
) else (
9-
python3 "%MYDIR%\scapy\tools\UTscapy.py" %@
9+
python3 "%MYDIR%\scapy\tools\UTscapy.py" %*
1010
)
1111
PAUSE

0 commit comments

Comments
 (0)