File: run-testdir

package info (click to toggle)
rocrand 5.7.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72,360 kB
  • sloc: cpp: 161,239; f90: 2,881; python: 1,798; sh: 342; xml: 210; makefile: 56
file content (11 lines) | stat: -rwxr-xr-x 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

testsdir="/usr/libexec/rocm/$1"

# Any individual failure is overall failure
exitcode=0
for testname in "$testsdir"/*
do
	$testname --gtest_output=xml:${AUTOPKGTEST_ARTIFACTS}/ || exitcode=1
done
exit $exitcode