#!/bin/bash
set -e

python3 -c "import Crypto.SelfTest; Crypto.SelfTest.run()" \
  2> >( egrep -v "RandomPool_DeprecationWarning|ClockRewindWarning" >&2 )
