File: py3

package info (click to toggle)
python-dnslib 0.9.23-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 668 kB
  • sloc: python: 3,358; sh: 31; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

export PYTHONPATH=$(pwd)

for src in __init__.py bimap.py bit.py buffer.py label.py dns.py lex.py server.py digparser.py ranges.py test_decode.py
do
    echo "===" $src
    set -e && for py in $(py3versions -s);
    do
        echo "Testing:" $($py --version 2>&1)
        $py dnslib/$src
    done
done

set -e && for py in $(py3versions -s);
do
    echo "Fuzz:" $($py --version 2>&1)
    $py fuzz.py
done