From 128ee7b7ec58c9b74d8b19475e70dce8c6cb477f Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 4 Sep 2019 10:21:09 +1000 Subject: bsp-builder: Do not clean the build space when starting with --no-clean --- tester/rt/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/rt/check.py b/tester/rt/check.py index 3bb24e3..c7f6c23 100755 --- a/tester/rt/check.py +++ b/tester/rt/check.py @@ -1020,7 +1020,7 @@ class builder: self._failures_report() def run_jobs(self, jobs): - if path.exists(self.build_dir): + if path.exists(self.build_dir) and not self.options['no-clean']: log.notice('Cleaning: %s' % (self.build_dir)) path.removeall(self.build_dir) self.start = _now() -- cgit v1.2.3