blob: fc453759dea3e88b8f79a1a151bbcaab7e242899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|