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