summaryrefslogtreecommitdiffstats
path: root/glustolibs-gluster/glustolibs/gluster/lib_utils.py
diff options
context:
space:
mode:
authornchilaka <nchilaka@redhat.com>2019-07-17 19:17:25 +0530
committernchilaka <nchilaka@redhat.com>2019-07-17 19:56:39 +0530
commitf8b1cd935bdc23905f864d9c41c30ad89e81737f (patch)
treede962104a2e7d7ca5a29e245dbe2e4272deb95fc /glustolibs-gluster/glustolibs/gluster/lib_utils.py
parent35bf19215c1faf5e82fec212975b49dafb6e98ba (diff)
Added more checking mechanism for crashes
Added more checking mechanism for crashes, as sometimes coredumps may not get collected by systems due to settings and hence can miss out on any crashes hit Change-Id: Id45a844bd0d7877d335c06287d4db873776e89db Signed-off-by: nchilaka <nchilaka@redhat.com>
Diffstat (limited to 'glustolibs-gluster/glustolibs/gluster/lib_utils.py')
-rwxr-xr-xglustolibs-gluster/glustolibs/gluster/lib_utils.py22
1 files changed, 16 insertions, 6 deletions
diff --git a/glustolibs-gluster/glustolibs/gluster/lib_utils.py b/glustolibs-gluster/glustolibs/gluster/lib_utils.py
index 29172b2ea..121efb8ca 100755
--- a/glustolibs-gluster/glustolibs/gluster/lib_utils.py
+++ b/glustolibs-gluster/glustolibs/gluster/lib_utils.py
@@ -779,10 +779,11 @@ def inject_msg_in_logs(nodes, log_msg, list_of_dirs=None, list_of_files=None):
def is_core_file_created(nodes, testrun_timestamp,
- paths=['/', '/var/log/core', '/tmp']):
+ paths=['/', '/var/log/core',
+ '/tmp', '/var/crash', '~/']):
'''
- Listing directories and files in "/", /var/log/core, /tmp
- directory for checking if the core file created or not
+ Listing directories and files in "/", /var/log/core, /tmp,
+ "/var/crash", "~/" directory for checking if the core file created or not
Args:
@@ -795,7 +796,7 @@ def is_core_file_created(nodes, testrun_timestamp,
of test case 'date +%s'
paths(list):
By default core file will be verified in "/","/tmp",
- "/var/log/core"
+ "/var/log/core", "/var/crash", "~/"
If test case need to verify core file in specific path,
need to pass path from test method
'''
@@ -805,8 +806,16 @@ def is_core_file_created(nodes, testrun_timestamp,
cmd = ' '.join(['cd', path, '&&', 'ls', 'core*'])
cmd_list.append(cmd)
- # Checks for core file in "/", "/var/log/core", "/tmp" directory
+ # Checks for core file in "/", "/var/log/core", "/tmp" "/var/crash",
+ # "~/" directory
for node in nodes:
+ ret, logfiles, err = g.run(node, 'grep -r "time of crash" '
+ '/var/log/glusterfs/')
+ if ret == 0:
+ g.log.error(" Seems like there was a crash, kindly check "
+ "the logfiles, even if you don't see a core file")
+ for logfile in logfiles.strip('\n').split('\n'):
+ g.log.error("Core was found in %s " % logfile.split(':')[0])
for cmd in cmd_list:
ret, out, _ = g.run(node, cmd)
g.log.info("storing all files and directory names into list")
@@ -824,7 +833,8 @@ def is_core_file_created(nodes, testrun_timestamp,
file_timestamp = file_timestamp.strip()
if(file_timestamp > testrun_timestamp):
count += 1
- g.log.error("New core file created %s " % file1)
+ g.log.error("New core file was created and found "
+ "at %s " % file1)
else:
g.log.info("Old core file Found")
# return the status of core file