diff options
Diffstat (limited to 'test-chill')
-rw-r--r-- | test-chill/testchill/chill.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test-chill/testchill/chill.py b/test-chill/testchill/chill.py index 0e30149..833d524 100644 --- a/test-chill/testchill/chill.py +++ b/test-chill/testchill/chill.py @@ -146,13 +146,12 @@ class BuildChillTestCase(test.TestCase): util.shell('rm', ['-f', '*.gcda'], wd=self.config.chill_dir) util.shell('make clean', wd=self.config.chill_dir) - util.shell('make veryclean', wd=self.config.chill_dir) def run(self): """ Build chill """ - util.shell('make', ['clean'], wd=self.config.chill_dir) + util.shell('make', ['distclean'], wd=self.config.chill_dir) util.shell('./configure', self.config.config_args, wd=self.config.chill_dir) util.shell('make', [], wd=self.config.chill_dir) |