1#!/bin/bash
2# SPDX-License-Identifier: GPL-2.0
3source tests/engine.sh
4test_begin
5
6set_timeout 2m
7
8check "verify help page" \
9	"osnoise --help"
10check "verify the --priority/-P param" \
11	"osnoise top -P F:1 -c 0 -r 900000 -d 1M -q"
12check "verify the --stop/-s param" \
13	"osnoise top -s 30 -T 1 -t"
14check "verify the  --trace param" \
15	"osnoise hist -s 30 -T 1 -t"
16check "verify the --entries/-E param" \
17	"osnoise hist -P F:1 -c 0 -r 900000 -d 1M -b 10 -E 25"
18
19test_end
20