Lines Matching +full:continue +full:- +full:on +full:- +full:error
3 # SPDX-License-Identifier: Apache-2.0
35 logging.error("$ZEPHYR_BASE environment variable undefined.\n")
44 proc = subprocess.Popen('git rev-parse --is-inside-work-tree',
58 elif log_lev == "ERROR":
59 level = logging.ERROR
62 format = logging.Formatter('%(levelname)-8s: %(message)s')
75 parser.add_argument('-b', '--base-commit', default=None,
79 parser.add_argument('-c', '--commit', default=None,
86 proc = subprocess.Popen('git rev-parse %s' % commit, stdout=subprocess.PIPE,
89 commit_id = proc.stdout.read().decode("utf-8").strip()
104 proc = subprocess.Popen('git diff --quiet', stdout=subprocess.PIPE,
107 raise Exception("Cannot continue, you have unstaged changes in your working tree")
109 proc = subprocess.Popen('git reset %s --hard' % commit,
116 logger.error(proc.stdout.read())
123 cmd = '/bin/bash -c "source ./zephyr-env.sh && twister'
124 cmd += ' +scripts/sanity_chk/sanity_compare.args -o %s"' % output_file
134 logger.error("Couldn't build footprint apps in commit %s" % commit)
135 logger.error(output)
143 cmd = "git clone --no-hardlinks %s" % os.environ.get('ZEPHYR_BASE')
156 logger.error(proc.stdout.read())
176 proc = subprocess.Popen('git diff --quiet', stdout=subprocess.PIPE,
199 logger.info('Working on current tree, not git enabled.')
214 logger.error("Cannot resolve base commit")
245 continue
250 continue
255 continue
257 continue
258 delta = test_data[metric] - golden_metric[metric]
260 continue
281 percentage = (float(value['delta']) / float(value['current'] -