blob: b4afc49105e0f7e5a417be02160b54d67c966130 (
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 signals $osn $archn $os $arch
fi
done
await
done
|