diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-11-17 18:09:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 18:09:25 +0100 |
commit | 4549a9524349c4384c0a7a2ca8662a418fc8fbe5 (patch) | |
tree | 5dc46e43ff07bb450e3d0e6b58a638866890803d /plugins/tests | |
parent | ad45727dbe03fae94ed2a7ac26ca828fe0fa6264 (diff) | |
parent | 9076ea36f70dbd643de4102a88dbd2f18847af16 (diff) | |
download | monitoring-plugins-4549a9524349c4384c0a7a2ca8662a418fc8fbe5.tar.gz |
Merge pull request #1654 from wolfgangkarall/master
check_procs -- exchange needle and haystack in strstr() for proper st…
Diffstat (limited to 'plugins/tests')
-rwxr-xr-x | plugins/tests/check_procs.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tests/check_procs.t b/plugins/tests/check_procs.t index fcea404e..3af218f5 100755 --- a/plugins/tests/check_procs.t +++ b/plugins/tests/check_procs.t @@ -96,7 +96,7 @@ is( $result->output, 'PROCS OK: 3 processes with RSS >= 100000 | procs=3;;;0;', $result = NPTest->testCmd( "$command -s S" ); is( $result->return_code, 0, "Checking filter for sleeping processes" ); -like( $result->output, '/^PROCS OK: 44 processes with STATE = S/', "Output correct" ); +like( $result->output, '/^PROCS OK: 88 processes with STATE = S/', "Output correct" ); $result = NPTest->testCmd( "$command -s Z" ); is( $result->return_code, 0, "Checking filter for zombies" ); |