comparison test/testzcc.py @ 352:899ae3aea803

First kernel run for vexpressA9
author Windel Bouwman
date Sun, 09 Mar 2014 11:55:55 +0100
parents 3bb7dcfe5529
children b8ad45b3a573
comparison
equal deleted inserted replaced
351:62803b073d11 352:899ae3aea803
52 arg_list = ['compile', basedir] 52 arg_list = ['compile', basedir]
53 arg_list.append('--target') 53 arg_list.append('--target')
54 arg_list.append('thumb') 54 arg_list.append('thumb')
55 self.callZcc(arg_list) 55 self.callZcc(arg_list)
56 56
57 def testKernel(self): 57 def testThumbKernel(self):
58 """ Build kernel using zcc: """ 58 """ Build kernel using zcc: """
59 recipe = relpath('..', 'kernel', 'recipe.yaml') 59 recipe = relpath('..', 'kernel', 'thumb.yaml')
60 self.buildRecipe(recipe)
61
62 def testArmKernel(self):
63 """ Build kernel using zcc: """
64 recipe = relpath('..', 'kernel', 'arm.yaml')
60 self.buildRecipe(recipe) 65 self.buildRecipe(recipe)
61 66
62 @unittest.skip('Too difficult to fix') 67 @unittest.skip('Too difficult to fix')
63 def testKernelBuildsEqualTwice(self): 68 def testKernelBuildsEqualTwice(self):
64 """ Build kernel two times and check the output is equal """ 69 """ Build kernel two times and check the output is equal """