mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
a3e7fd9c61
These were fine (though still lazy) when these tests were the only user of this stub. However, the ps stub is about to be enhanced, so fix these uses of it to represent the intended usage. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
21 lines
328 B
Bash
Executable File
21 lines
328 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Memory check (custom, error only), error situation"
|
|
|
|
setup
|
|
|
|
setup_script_options <<EOF
|
|
CTDB_MONITOR_MEMORY_USAGE=":85"
|
|
EOF
|
|
|
|
set_mem_usage 90 90
|
|
required_result 1 <<EOF
|
|
ERROR: System memory utilization 90% >= threshold 85%
|
|
$FAKE_PROC_MEMINFO
|
|
$(ps auxfww)
|
|
EOF
|
|
|
|
simple_test
|