blob: dd71bd95d9055965eb037886b8d1e7543805913c (
plain) (
tree)
|
|
# -*- sh -*-
# See LICENSE file for copyright and license details.
for os in $(getnamelist OS); do
osn=$(getnum OS $os)
for arch in $(getnamelist ARCH); do
archn=$(getnum ARCH $arch)
if issupported $os $arch; then
p tests/run test-search.tu errors $osn $archn $os $arch
fi
done
await
done
|