QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
302 B

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