We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b0b39e commit 284d507Copy full SHA for 284d507
tests/command-line.sh
@@ -9,9 +9,20 @@ set -e
9
../target/debug/sonar ps --exclude-users=root,$LOGNAME > /dev/null
10
../target/debug/sonar ps --exclude-users root,$LOGNAME > /dev/null
11
12
-# Allow all these arguments
+# Test all arguments in combination with --batchless
13
../target/debug/sonar ps \
14
--batchless \
15
+ --min-cpu-percent 0.5 \
16
+ --min-mem-percent 1.8 \
17
+ --min-cpu-time 10 \
18
+ --exclude-system-jobs \
19
+ --exclude-users root \
20
+ --exclude-commands emacs \
21
+ --lockdir . \
22
+ > /dev/null
23
+
24
+# Test all arguments in combination with --rollup
25
+../target/debug/sonar ps \
26
--rollup \
27
--min-cpu-percent 0.5 \
28
--min-mem-percent 1.8 \
0 commit comments