Print start time when running integration tests.

This commit is contained in:
Anthony Yeh 2014-09-03 14:00:41 -07:00
Родитель d933b997d5
Коммит 88a4365794
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -30,7 +30,7 @@ unit_test_race:
go test -race ./go/...
queryservice_test:
echo "queryservice test"
echo $$(date): Running test/queryservice_test.py...
if [ -e "/usr/bin/memcached" ]; then \
time test/queryservice_test.py -m -e vtocc; \
time test/queryservice_test.py -m -e vttablet; \
@ -67,7 +67,7 @@ SHELL = /bin/bash
integration_test:
cd test ; \
for t in $(integration_test_files) ; do \
echo Running test/$$t... ; \
echo $$(date): Running test/$$t... ; \
output=$$(time ./$$t $$VT_TEST_FLAGS 2>&1) ; \
if [[ $$? != 0 ]]; then \
echo "$$output" >&2 ; \