summaryrefslogtreecommitdiff
path: root/.unittests
diff options
context:
space:
mode:
authorChuck Thier <cthier@gmail.com>2014-04-24 16:50:03 +0000
committerChuck Thier <cthier@gmail.com>2014-04-24 16:50:03 +0000
commit5b8fad754cd2b76a1180f7f498e0045cc3ee87d9 (patch)
tree70653b2c6c2dc9603526db9af06dce61e9730c11 /.unittests
parent7a24c4ba3a33a1effd1a36d86674cef0f12da634 (diff)
downloadswift-5b8fad754cd2b76a1180f7f498e0045cc3ee87d9.tar.gz
Fix coverage report for newer versions of coverage
With newer versions of coverage (at least what is installed with ubuntu trusty), code coverage isn't working. Making this change allows the coverage library to find the swift package. Change-Id: I3b3792622904a86096064c0e03c8095636f83973
Diffstat (limited to '.unittests')
-rwxr-xr-x.unittests2
1 files changed, 1 insertions, 1 deletions
diff --git a/.unittests b/.unittests
index 4004b842a..51c110f68 100755
--- a/.unittests
+++ b/.unittests
@@ -11,7 +11,7 @@ else
cover_branches="--cover-branches --cover-html --cover-html-dir=$TOP_DIR/cover"
fi
cd $TOP_DIR/test/unit
-nosetests --exe --with-coverage --cover-package swift. --cover-erase $cover_branches $@
+nosetests --exe --with-coverage --cover-package swift --cover-erase $cover_branches $@
rvalue=$?
rm -f .coverage
cd -