blob: c213b32e5f6f515a19504e56f7108212230baf76 [file] [log] [blame]
Andrew Geisslera2681d92020-10-16 10:17:07 -05001#!/bin/sh
2
3ptestdir=$(dirname "$(readlink -f "$0")")
Andrew Geissler4b7c1152020-11-30 19:55:29 -06004cd tests
5for test in $(ls)
Andrew Geisslera2681d92020-10-16 10:17:07 -05006do
Andrew Geissler4b7c1152020-11-30 19:55:29 -06007 ./../test-driver --test-name $test --log-file ../$test.log --trs-file ../$test.trs --color-tests no --enable-hard-errors yes --expect-failure no -- ./$test
Andrew Geisslera2681d92020-10-16 10:17:07 -05008done