Disable irrelevant output in tests to workaround output scrambling on MacOS 10.11

This commit is contained in:
Alexey Rybalchenko
2017-11-30 17:05:38 +01:00
parent 107ae0c5c2
commit 30a7c163c8
7 changed files with 12 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ trap 'kill -TERM $SAMPLER_PID; kill -TERM $SINK_PID; kill -TERM $PROCESSOR1_PID;
SAMPLER="ex2-sampler"
SAMPLER+=" --id sampler1"
SAMPLER+=" --verbosity NOLOG"
SAMPLER+=" --control static --log-color false"
SAMPLER+=" --max-iterations 2"
SAMPLER+=" --mq-config $ex2config"
@@ -15,6 +16,7 @@ SAMPLER_PID=$!
PROCESSOR1="ex2-processor"
PROCESSOR1+=" --id processor1"
PROCESSOR1+=" --verbosity NOLOG"
PROCESSOR1+=" --control static --log-color false"
PROCESSOR1+=" --mq-config $ex2config"
PROCESSOR1+=" --config-key processor"
@@ -23,6 +25,7 @@ PROCESSOR1_PID=$!
PROCESSOR2="ex2-processor"
PROCESSOR2+=" --id processor2"
PROCESSOR2+=" --verbosity NOLOG"
PROCESSOR2+=" --control static --log-color false"
PROCESSOR2+=" --mq-config $ex2config"
PROCESSOR2+=" --config-key processor"