summaryrefslogtreecommitdiff
path: root/test-chill/testchill/chill.py
diff options
context:
space:
mode:
authordhuth <derickhuth@gmail.com>2015-01-27 14:00:12 -0700
committerdhuth <derickhuth@gmail.com>2015-01-27 14:00:12 -0700
commit34c463a1d3a19f556e3e910313d2c2eac1736c6b (patch)
tree9bc55a0f86c6a02f0d9a74a9d55a8ae197eaebf8 /test-chill/testchill/chill.py
parenteb9236c5353785472ae132f27e1cfb9f1e4264a5 (diff)
downloadchill-34c463a1d3a19f556e3e910313d2c2eac1736c6b.tar.gz
chill-34c463a1d3a19f556e3e910313d2c2eac1736c6b.tar.bz2
chill-34c463a1d3a19f556e3e910313d2c2eac1736c6b.zip
coverage fixes
Diffstat (limited to 'test-chill/testchill/chill.py')
-rw-r--r--test-chill/testchill/chill.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-chill/testchill/chill.py b/test-chill/testchill/chill.py
index b881ef4..05f3b4f 100644
--- a/test-chill/testchill/chill.py
+++ b/test-chill/testchill/chill.py
@@ -188,7 +188,7 @@ class BuildChillTestCase(test.TestCase):
if self.test_result.passed():
if self.config.bin_dir:
util.shell('mv', [os.path.join(self.config.chill_dir, self.config.make_target()), os.path.join(self.config.bin_dir, self.config.name())])
- else:
+ elif not self.config.make_target() == self.config.name():
util.shell('mv', [os.path.join(self.config.chill_dir, self.config.make_target()), os.path.join(self.config.chill_dir, self.config.name())])