2086N/A#!/bin/sh
2086N/A# Script to run all the pyopenssl test scripts.
2086N/Afor f in crypto rand ssl; do
2086N/A echo Running test_$f
2086N/A python test_$f.py
2086N/Adone
2086N/A