ansible: Correct runcmd to deploy SSH public keys in profiles
[lttng-ci.git] / scripts / packaging / test-run.sh
1 #!/bin/sh
2
3 set -exu
4
5 lttng create
6 lttng enable-event -a -k
7 lttng start
8 sleep 1
9 lttng stop
10
11 count=$(lttng view | wc -l)
12 if [ $count -lt "100" ]; then
13 false
14 fi
15
16
This page took 0.029651 seconds and 4 git commands to generate.