Reorganisation of the repo and cleanup
[lttng-ci.git] / scripts / packaging / test-run.sh
1 #!/bin/sh
2
3 lttng create
4 lttng enable-event -a -k
5 lttng start
6 sleep 1
7 lttng stop
8
9 count=$(lttng view | wc -l)
10 if [ $count -lt "100" ]; then
11 false
12 fi
13
14
This page took 0.029079 seconds and 4 git commands to generate.