#!/bin/sh
# test-parse openssl's .i files, without stopping at failures

exec >parse.log 2>&1

for fn in `cat /home/scott/bld/openssl-0.9.7/allifiles`; do
  ./test-parse -tr c_lang $fn
done
