blob: b2e50292a0344ea372cb2328988fe6d276e3747c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "Memory check (custom, both), error situation"
setup
setup_script_options <<EOF
CTDB_MONITOR_MEMORY_USAGE="70:80"
EOF
set_mem_usage 87 87
required_result 1 <<EOF
ERROR: System memory utilization 87% >= threshold 80%
$FAKE_PROC_MEMINFO
$(ps auxfww)
EOF
simple_test
|