1
2load_lib vmips-outcheck.exp
3
4foreach testcase [glob $srcdir/$subdir/*.par] {
5	# If we're only testing specific files and this isn't one of them, skip it.
6	if ![runtest_file_p $runtests $testcase] then {
7		continue
8	}
9	verbose "$testcase\n"
10	if [catch { outcheck_run_one_test $testcase } err] {
11		verbose "Error from testcase $testcase:\n$err\n"
12	}
13}
14
15