Merge tag 'v5.15.57' into rpi-5.15.y
[platform/kernel/linux-rpi.git] / drivers / usb / host / dwc_otg / test / Makefile
1
2 PERL=/usr/bin/perl
3 PL_TESTS=test_sysfs.pl test_mod_param.pl
4
5 .PHONY : test
6 test : perl_tests
7
8 perl_tests :
9         @echo
10         @echo Running perl tests
11         @for test in $(PL_TESTS); do \
12           if $(PERL) ./$$test ; then \
13             echo "=======> $$test, PASSED" ; \
14           else echo "=======> $$test, FAILED" ; \
15           fi \
16         done