diff options
author | dhuth <derickhuth@gmail.com> | 2015-04-13 11:53:47 -0600 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2015-04-13 11:53:47 -0600 |
commit | 2bebca1c3fe897fb681e1853d7d565ecb0be8b52 (patch) | |
tree | f2ce75ad88224e8b9e4ed94b1f82b6add24ac7a3 /test-chill/testchill/chill.py | |
parent | 994df9233cd1171a3f18ea575acd58adc105ff2e (diff) | |
download | chill-2bebca1c3fe897fb681e1853d7d565ecb0be8b52.tar.gz chill-2bebca1c3fe897fb681e1853d7d565ecb0be8b52.tar.bz2 chill-2bebca1c3fe897fb681e1853d7d565ecb0be8b52.zip |
--
Diffstat (limited to 'test-chill/testchill/chill.py')
-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) |