summaryrefslogtreecommitdiff
path: root/tests/scripts/gen-simple
blob: 3ce75f35e489a3b8f9d79e0419f518222e06ee9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

mkdir -p $(for d in "${@}"; do echo "$d"; done | uniq | sed "s|^|reports/|")

for s in "${@}"
do
	echo ".PHONY: $s"		>> tests.mk
	echo "$s:"			>> tests.mk
	echo "	./scripts/run-xpass $s" >> tests.mk
done

echo "TESTS += " "${@}" >> tests.mk