File: python3-all-dbg

package info (click to toggle)
python-crypto 2.6.1-5%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 3,032 kB
  • ctags: 3,600
  • sloc: ansic: 12,466; python: 10,482; sh: 41; makefile: 16
file content (9 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -e

PYVERS=$(py3versions -vi)

for py in $PYVERS ; do
  python$py-dbg -c "import Crypto.SelfTest; Crypto.SelfTest.run()" \
    2> >( egrep -v "RandomPool_DeprecationWarning|\[[[:digit:]]+ refs\]" >&2 )
done