浏览代码

#263 Makefile *pwm check not working

pull/270/head
mstroh76 2 个月前
父节点
当前提交
bf8be468b2
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      wiringPi/test/Makefile

+ 3
- 3
wiringPi/test/Makefile 查看文件

@@ -54,7 +54,7 @@ test:
@error_state=false ; \
for t in $(tests) ; do \
echo === unit test: $${t} === ; \
if [ $${t} = *"pwm" ]; then \
if [ $${t} = *"8_pwm" ] || [ $${t} = *"9_pwm" ]; then \
time sudo ./$${t} ; \
else \
time ./$${t} ; \
@@ -74,7 +74,7 @@ xotest:
@error_state=false ; \
for t in $(tests) $(xotests) ; do \
echo === XO unit test: $${t} === ; \
if [ $${t} = *"pwm" ]; then \
if [ $${t} = *"8_pwm" ] || [ $${t} = *"9_pwm" ]; then \
time sudo ./$${t} ; \
else \
time ./$${t} ; \
@@ -94,7 +94,7 @@ pifacetest:
@error_state=false ; \
for t in $(tests) $(pifacetests) ; do \
echo === PiFace unit test: $${t} === ; \
if [ $${t} = *"pwm" ]; then \
if [ $${t} = *"8_pwm" ] || [ $${t} = *"9_pwm" ]; then \
time sudo ./$${t} ; \
else \
time ./$${t} ; \


正在加载...
取消
保存