jjb: Add env and os details printing to build jobs
[lttng-ci.git] / scripts / packaging / test-run.sh
... / ...
CommitLineData
1#!/bin/sh
2
3set -exu
4
5lttng create
6lttng enable-event -a -k
7lttng start
8sleep 1
9lttng stop
10
11count=$(lttng view | wc -l)
12if [ $count -lt "100" ]; then
13 false
14fi
15
16
This page took 0.02671 seconds and 4 git commands to generate.