blob: 8dff79101faaf118c44182fbb8449d1775774d34 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002
3set -e
4
5# Optional arguments are 'list' to lists all tests, or the test name (base name
6# ie test_evp, not 03_test_evp.t).
7
8export TOP=.
9# OPENSSL_ENGINES is relative from the test binaries
10export OPENSSL_ENGINES=../engines
11
Andrew Geisslereff27472021-10-29 15:35:00 -050012perl ./test/run_tests.pl $* | sed -u -r -e '/(.*) \.*.ok/ s/^/PASS: /g' -r -e '/Dubious(.*)/ s/^/FAIL: /g' -e '/(.*) \.*.skipped: (.*)/ s/^/SKIP: /g'