diff options
author | dhuth <derickhuth@gmail.com> | 2015-04-13 12:09:42 -0600 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2015-04-13 12:09:42 -0600 |
commit | f0909ea6373f7f01271b1a6707e8022188d885fe (patch) | |
tree | 889589f71e4f23c42539a4ff0d85ac0588141e3d /test-chill | |
parent | b530622a9b2261b1e8a9c5202285d3928c97b893 (diff) | |
download | chill-f0909ea6373f7f01271b1a6707e8022188d885fe.tar.gz chill-f0909ea6373f7f01271b1a6707e8022188d885fe.tar.bz2 chill-f0909ea6373f7f01271b1a6707e8022188d885fe.zip |
--
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) |