3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 15:22:18 +00:00
Brooklyn/drivers/usb/host/dwc_otg/test/Makefile

17 lines
302 B
Makefile

PERL=/usr/bin/perl
PL_TESTS=test_sysfs.pl test_mod_param.pl
.PHONY : test
test : perl_tests
perl_tests :
@echo
@echo Running perl tests
@for test in $(PL_TESTS); do \
if $(PERL) ./$$test ; then \
echo "=======> $$test, PASSED" ; \
else echo "=======> $$test, FAILED" ; \
fi \
done