Browse Source

Merge branch 'master' of https://github.com/smititelu/rtpengine

Change-Id: I3162ece6f86c8c7fb3f5cef46e32e367d5e2721c
pull/1457/head
Richard Fuchs 4 years ago
parent
commit
c6a689f958
1 changed files with 13 additions and 1 deletions
  1. +13
    -1
      t/Makefile

+ 13
- 1
t/Makefile View File

@ -108,7 +108,19 @@ endif
true # override linking recipe from common.Makefile
unit-tests: $(TESTS)
for x in $(TESTS); do echo testing: $$x; G_DEBUG=fatal-warnings ./$$x || exit 1; done
failed="" ; \
for x in $(TESTS); do \
echo `date +"%Y-%m-%d %H:%M:%S"` testing: $$x ; \
G_DEBUG=fatal-warnings ./$$x ; \
if [ $$? -eq 0 ] ; \
then echo `date +"%Y-%m-%d %H:%M:%S"` test $$x: succeeded ; \
else echo `date +"%Y-%m-%d %H:%M:%S"` test $$x: failed ; failed="$$failed $$x" ; \
fi ; \
done ; \
if [ -n "$$failed" ] ; then \
echo "Tests failed: $$failed" ; \
exit 1 ; \
fi
daemon-tests: daemon-tests-main daemon-tests-jb daemon-tests-pubsub daemon-tests-websocket \
daemon-tests-intfs daemon-tests-stats # daemon-tests-delay-buffer daemon-tests-delay-timing


Loading…
Cancel
Save