diff test/testemulation.py @ 377:9667d78ba79e

Switched to xml for project description
author Windel Bouwman
date Fri, 11 Apr 2014 15:47:50 +0200
parents 19eacf4f7270
children 94f5b719ad0b
line wrap: on
line diff
--- a/test/testemulation.py	Tue Mar 25 19:36:51 2014 +0100
+++ b/test/testemulation.py	Fri Apr 11 15:47:50 2014 +0200
@@ -101,21 +101,23 @@
 
     def testM3Bare(self):
         """ Build bare m3 binary and emulate it """
-        recipe = os.path.join(testdir, 'm3_bare', 'recipe.yaml')
+        recipe = os.path.join(testdir, 'm3_bare', 'build.xml')
         self.buildRecipe(recipe)
         data = runQemu('m3_bare/bare.bin')
         self.assertEqual('Hello worle', data)
 
     def testA9Bare(self):
         """ Build vexpress cortex-A9 binary and emulate it """
-        recipe = os.path.join(testdir, '..', 'examples', 'qemu_a9_hello', 'recipe.yaml')
+        recipe = os.path.join(testdir, '..', 'examples', 'qemu_a9_hello',
+            'build.xml')
         self.buildRecipe(recipe)
-        data = runQemu('../examples/qemu_a9_hello/hello.bin', machine='vexpress-a9')
+        data = runQemu('../examples/qemu_a9_hello/hello.bin',
+            machine='vexpress-a9')
         self.assertEqual('Hello worle', data)
 
     def testKernelVexpressA9(self):
         """ Build vexpress cortex-A9 binary and emulate it """
-        recipe = os.path.join(testdir, '..', 'kernel', 'arm.yaml')
+        recipe = os.path.join(testdir, '..', 'kernel', 'build.xml')
         self.buildRecipe(recipe)
         data = runQemu('../kernel/kernel_arm.bin', machine='vexpress-a9')
         self.assertEqual('Welcome to lcfos!', data[:17])