avoid egrep

This commit is contained in:
John
2024-01-20 15:13:07 +01:00
parent 1a1c0633e3
commit ec5c91f29b
5 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
#!/bin/sh
(cd src/lib/ebus/test && make >/dev/null && ./test_filereader && ./test_data && ./test_message && ./test_symbol && echo "standard: OK!")|egrep -v "OK$"
(cd src/lib/ebus/contrib/test && make >/dev/null && ./test_contrib && echo "contrib: OK!")|egrep -v "OK$"
(cd src/lib/ebus/test && make >/dev/null && ./test_filereader && ./test_data && ./test_message && ./test_symbol && echo "standard: OK!")|grep -Ev "OK$"
(cd src/lib/ebus/contrib/test && make >/dev/null && ./test_contrib && echo "contrib: OK!")|grep -Ev "OK$"