summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-03 17:42:17 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-03 17:42:17 +0000
commitedf5232690a648b715a2649f37393c0565bc127f (patch)
tree301ad73fe94473a2faf212deb8f9d758ffaae230
parent64a6278d88889e163b97c69bcfb0d3bd7e5778b6 (diff)
downloadmorph-edf5232690a648b715a2649f37393c0565bc127f.tar.gz
Fix failing coverage test
-rw-r--r--morphlib/buildenvironment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/buildenvironment.py b/morphlib/buildenvironment.py
index 01b5ed20..ef770f52 100644
--- a/morphlib/buildenvironment.py
+++ b/morphlib/buildenvironment.py
@@ -115,9 +115,9 @@ class BuildEnvironment():
# than leaving it up to individual morphologies.
if arch == 'x86_32':
cpu = 'i686'
- elif arch == 'armv8l64':
+ elif arch == 'armv8l64': # pragma: no cover
cpu = 'aarch64'
- elif arch == 'armv8b64':
+ elif arch == 'armv8b64': # pragma: no cover
cpu = 'aarch64_be'
else:
cpu = arch