From 977c7d333edf5055eebd79426099d2e7190dbcdb Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Thu, 4 Apr 2019 16:16:31 +0200 Subject: [PATCH] Disable aleth log output again on the CI --- scripts/tests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/tests.sh b/scripts/tests.sh index 120dbd997..c809b4796 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -152,7 +152,9 @@ function download_aleth() # echos the PID function run_aleth() { - $REPO_ROOT/scripts/aleth_with_log.sh $ALETH_PATH $ALETH_TMP_OUT --log-verbosity 3 --db memorydb --test -d "${WORKDIR}" &> /dev/null & + # Use this to have aleth log output + #$REPO_ROOT/scripts/aleth_with_log.sh $ALETH_PATH $ALETH_TMP_OUT --log-verbosity 3 --db memorydb --test -d "${WORKDIR}" &> /dev/null & + $ALETH_PATH --db memorydb --test -d "${WORKDIR}" &> /dev/null & echo $! # Wait until the IPC endpoint is available. while [ ! -S "${WORKDIR}/geth.ipc" ] ; do sleep 1; done