#!/bin/bash
set -e

PYVERS=$(pyversions -vi)

for py in $PYVERS ; do
  python$py-dbg -c "import Crypto.SelfTest; Crypto.SelfTest.run()"
done
