jjb: babeltrace: use clang-format-16
[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.025247 seconds and 5 git commands to generate.