We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b89e54d + 5df334a commit b1fad2fCopy full SHA for b1fad2f
testcases/GcovSetup.py
@@ -54,6 +54,10 @@ def runTest(self):
54
'''
55
Running the gcov test
56
57
+ path = " /sys/kernel/debug/gcov/reset"
58
+ res = self.cv_HOST.host_run_command("if [ -f %s ];then echo 'true';else echo 'false';fi" % path)
59
+ if 'true' in res:
60
+ self.skipTest("Skip Gcov Setup as system already booted with Gcov Kernel")
61
self.distro_name = self.util.distro_name()
62
log.info("OS: %s" %self.distro_name)
63
if self.distro_name == 'rhel':
0 commit comments