[Makefile] Added a simple test that verifies output. Mostly as an example of use for test command.
This commit is contained in:
parent
3d52d708bc
commit
1ef712c6a5
4
Makefile
4
Makefile
@ -24,3 +24,7 @@ install:
|
|||||||
uninstall:
|
uninstall:
|
||||||
rm -f ${DESTDIR}usr/bin/${TARGET}
|
rm -f ${DESTDIR}usr/bin/${TARGET}
|
||||||
rm -f ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
rm -f ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE
|
||||||
|
|
||||||
|
test:
|
||||||
|
@echo -n "Does input \"3.68 120 30d\" gives 317.95? "
|
||||||
|
@test "${shell ./kwh-cost 3.68 120 30d}" = "317.95" && { echo -e "\e[32mYES\e[0m"; } || { echo -e "\e[31mNO\e[0m"; }
|
Loading…
Reference in New Issue
Block a user