bt benchmark: Ignore commit ae466a6e1b856d96cf5112a371b4df2b732503ec
[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.028927 seconds and 4 git commands to generate.