From 5f74d22a95c707510f4122160e2a5db74c636486 Mon Sep 17 00:00:00 2001 From: mstroh76 Date: Sat, 18 May 2024 12:56:55 +0200 Subject: [PATCH] #243 unit test --- wiringPi/test/Makefile | 2 +- wiringPi/test/wiringpi_xotest_test1_spi.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wiringPi/test/Makefile b/wiringPi/test/Makefile index 9a95b73..e448f16 100644 --- a/wiringPi/test/Makefile +++ b/wiringPi/test/Makefile @@ -50,7 +50,7 @@ test: xotest: @error_state=false ; \ - for t in $(xotests) ; do \ + for t in $(tests) $(xotests) ; do \ echo === unit test: $${t} === ; \ time ./$${t} ; \ if [ $$? -ne 0 ]; then \ diff --git a/wiringPi/test/wiringpi_xotest_test1_spi.c b/wiringPi/test/wiringpi_xotest_test1_spi.c index a04cfe9..1acd694 100644 --- a/wiringPi/test/wiringpi_xotest_test1_spi.c +++ b/wiringPi/test/wiringpi_xotest_test1_spi.c @@ -104,14 +104,14 @@ int main(int argc, char *argv []){ checkVoltage(0.1f, "Analog value 1xLow"); digitalWriteEx(21, GPIOIn, HIGH); - checkVoltage(3.0f, "Analog value 1xHigh"); + checkVoltage(3.1f, "Analog value 1xHigh"); pinMode(22, OUTPUT); digitalWriteEx(22, -1, LOW); checkVoltage(1.55f, "Analog value Half (1H/1L)"); digitalWriteEx(22, GPIOIn, HIGH); - checkVoltage(3.1f, "Analog value 2xHigh"); + checkVoltage(3.2f, "Analog value 2xHigh"); pinMode(24, OUTPUT); digitalWriteEx(24, GPIOIn, HIGH); @@ -172,7 +172,7 @@ int main(int argc, char *argv []){ } ret = wiringPiSPIxGetFd(0, spiChannel); CheckSame("Fd after close", ret, -1); - + return UnitTestState(); }