summaryrefslogtreecommitdiffstats
path: root/slobrok/src/tests/startup/run.sh
blob: 21eaebd76f251d30eae1c987c30fdb60f0b2ef15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e
cmd=../../apps/slobrok/slobrok

$cmd -c mumbojumbo
if [ $? -eq 1 ]; then
    exit 0
fi
exit 1