aboutsummaryrefslogtreecommitdiffstats
path: root/slobrok/src/tests/startup/run.sh
blob: e0fc2a24931da607d8c026b482e11ae0b36d64da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Copyright Vespa.ai. 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