Files

6 lines
94 B
Bash
Raw Permalink Normal View History

2026-04-23 17:07:55 +08:00
#!/bin/sh
for x in `find ./ -name Makefile`;
do
make -C `dirname ${x}` -k runtest-TESTS
done