summaryrefslogtreecommitdiffstats
path: root/slobrok/src/tests/startup/run.sh
blob: 662dd05b5850c4ca0b3ea3f7fb99c23d341d2479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Copyright 2016 Yahoo Inc. 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