summaryrefslogtreecommitdiff
path: root/morphlib/morphologyfactory_tests.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-09-20 13:40:11 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-09-20 13:40:11 +0000
commitb01cff3d2af3b9a3fb410a18bdc2478a33360fac (patch)
tree7b70840992452f402f10290c0ae7d8d3000fbd52 /morphlib/morphologyfactory_tests.py
parentdbc7cee2d8c0c307e8805bde876b30f2fac2eb46 (diff)
downloadmorph-b01cff3d2af3b9a3fb410a18bdc2478a33360fac.tar.gz
Rename arm to armv7 and be consistent
armv5 and armv7 are different enough to be a problem, so specify which particular arm sub-architecture we currently support.
Diffstat (limited to 'morphlib/morphologyfactory_tests.py')
-rw-r--r--morphlib/morphologyfactory_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/morphologyfactory_tests.py b/morphlib/morphologyfactory_tests.py
index 8b69f1de..b8c89d2a 100644
--- a/morphlib/morphologyfactory_tests.py
+++ b/morphlib/morphologyfactory_tests.py
@@ -218,7 +218,7 @@ class MorphologyFactoryTests(unittest.TestCase):
self.assertEqual(morph.builds_artifacts, ['foo-system-rootfs'])
def test_sets_builds_artifacts_for_arm_system(self):
- self.lr.arch = 'arm'
+ self.lr.arch = 'armv7'
morph = self.mf.get_morphology('reponame', 'sha1', 'system.morph')
self.assertEqual(sorted(morph.builds_artifacts),
sorted(['foo-system-rootfs', 'foo-system-kernel']))