annotate 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
rev   line source
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
1 import unittest
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
2 import os
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
3 import sys
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
4
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
5 import zcc
335
582a1aaa3983 Added long branch format
Windel Bouwman
parents: 334
diff changeset
6 from ppci.objectfile import ObjectFile
250
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 237
diff changeset
7 import ppci
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
8 import io
342
86b02c98a717 Moved target directory
Windel Bouwman
parents: 341
diff changeset
9 from ppci.target import target_list
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
10
321
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
11 # Store testdir for safe switch back to directory:
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
12 testdir = os.path.dirname(os.path.abspath(__file__))
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
13
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
14 def relpath(*args):
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
15 return os.path.join(testdir, *args)
321
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
16
338
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
17 class ZccBaseTestCase(unittest.TestCase):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
18 def callZcc(self, arg_list):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
19 parser = zcc.make_parser()
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
20 arg_list = ['--log', 'warn'] + arg_list
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
21 args = parser.parse_args(arg_list)
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
22 self.assertEqual(0, zcc.main(args))
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
23
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
24 def buildRecipe(self, recipe):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
25 arg_list = ['recipe', recipe]
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
26 self.callZcc(arg_list)
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
27
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
28
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents: 337
diff changeset
29 class ZccTestCase(ZccBaseTestCase):
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
30 """ Tests the compiler driver """
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
31 def setUp(self):
321
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
32 os.chdir(testdir)
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
33
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
34 def tearDown(self):
8c569fbe60e4 Load yacc and burg dynamic
Windel Bouwman
parents: 315
diff changeset
35 os.chdir(testdir)
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
36
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
37 def do(self, filenames, imps=[], extra_args=[]):
300
Windel Bouwman
parents: 292
diff changeset
38 basedir = os.path.join('..', 'examples', 'c3')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
39 arg_list = ['compile']
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
40 arg_list += [os.path.join(basedir, fn) for fn in filenames]
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
41 for fn in imps:
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
42 arg_list.append('-i')
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
43 arg_list.append(os.path.join(basedir, fn))
292
534b94b40aa8 Fixup reorganize
Windel Bouwman
parents: 289
diff changeset
44 arg_list.append('--target')
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 338
diff changeset
45 arg_list.append('thumb')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
46 arg_list += extra_args
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
47 self.callZcc(arg_list)
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
48
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
49
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
50 def testDumpIr(self):
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
51 basedir = relpath('..', 'examples', 'c3', 'comments.c3')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
52 arg_list = ['compile', basedir]
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
53 arg_list.append('--target')
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 338
diff changeset
54 arg_list.append('thumb')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
55 self.callZcc(arg_list)
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
56
352
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
57 def testThumbKernel(self):
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
58 """ Build kernel using zcc: """
352
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
59 recipe = relpath('..', 'kernel', 'thumb.yaml')
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
60 self.buildRecipe(recipe)
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
61
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
62 def testArmKernel(self):
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
63 """ Build kernel using zcc: """
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
64 recipe = relpath('..', 'kernel', 'arm.yaml')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
65 self.buildRecipe(recipe)
313
04cf4d26a3bc Added constant function
Windel Bouwman
parents: 312
diff changeset
66
337
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
67 @unittest.skip('Too difficult to fix')
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
68 def testKernelBuildsEqualTwice(self):
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
69 """ Build kernel two times and check the output is equal """
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
70 recipe = relpath('..', 'kernel', 'recipe.yaml')
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
71 bin_filename = relpath('..', 'kernel', 'kernel.bin')
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
72 self.buildRecipe(recipe)
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
73 with open(bin_filename, 'rb') as f:
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
74 a = f.read()
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
75 self.buildRecipe(recipe)
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
76 with open(bin_filename, 'rb') as f:
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
77 b = f.read()
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
78 self.assertSequenceEqual(a, b)
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
79
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
80 def testUser(self):
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
81 """ Build userspace using zcc: """
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
82 recipe = relpath('..', 'user', 'recipe.yaml')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
83 self.buildRecipe(recipe)
311
ff665880a6b0 Added testcase for kernel and userspace
Windel Bouwman
parents: 301
diff changeset
84
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
85 def testBurn2(self):
288
a747a45dcd78 Various styling work
Windel Bouwman
parents: 287
diff changeset
86 self.do(['burn2.c3'], ['stm32f4xx.c3'])
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
87
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 331
diff changeset
88 def testBurn2_recipe(self):
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
89 recipe = relpath('..', 'examples', 'c3', 'recipe.yaml')
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
90 self.buildRecipe(recipe)
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
91
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
92 def test_hello_A9_c3_recipe(self):
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
93 recipe = relpath('..', 'examples', 'qemu_a9_hello', 'recipe.yaml')
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 331
diff changeset
94 self.buildRecipe(recipe)
6f4753202b9a Added more recipes
Windel Bouwman
parents: 331
diff changeset
95
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 338
diff changeset
96 @unittest.skip('Skip because of logfile')
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
97 def testBurn2WithLogging(self):
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
98 self.do(['burn2.c3'], ['stm32f4xx.c3'], extra_args=['--report', 'x.rst'])
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
99
315
084cccaa5deb Added console and screen
Windel Bouwman
parents: 313
diff changeset
100 def testCommentsExample(self):
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
101 self.do(['comments.c3'])
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
102
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
103 def testCast(self):
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
104 self.do(['cast.c3'])
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
105
300
Windel Bouwman
parents: 292
diff changeset
106 def testFunctions(self):
Windel Bouwman
parents: 292
diff changeset
107 self.do(['functions.c3'])
Windel Bouwman
parents: 292
diff changeset
108
341
4d204f6f7d4e Rewrite of assembler parts
Windel Bouwman
parents: 338
diff changeset
109 @unittest.skip('Revise this test')
250
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 237
diff changeset
110 def testSectionAddress(self):
301
6753763d3bec merge codegen into ppci package
Windel Bouwman
parents: 300
diff changeset
111 src = """module tst;
287
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
112 function void t2() {var int t3; t3 = 2;}
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
113 """
1c7c1e619be8 File movage
Windel Bouwman
parents: 286
diff changeset
114 f = io.StringIO(src)
335
582a1aaa3983 Added long branch format
Windel Bouwman
parents: 334
diff changeset
115 out = ObjectFile()
342
86b02c98a717 Moved target directory
Windel Bouwman
parents: 341
diff changeset
116 tg = target_list.armtarget
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents: 322
diff changeset
117 tr = ppci.tasks.TaskRunner()
335
582a1aaa3983 Added long branch format
Windel Bouwman
parents: 334
diff changeset
118 tr.add_task(ppci.buildtasks.Compile([f], [], tg, out))
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents: 322
diff changeset
119 tr.run_tasks()
335
582a1aaa3983 Added long branch format
Windel Bouwman
parents: 334
diff changeset
120 code = out.get_section('code')
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents: 322
diff changeset
121 self.assertEqual(0x0, code.address)
250
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 237
diff changeset
122
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 237
diff changeset
123
208
4cb47d80fd1f Added zcc test
Windel Bouwman
parents:
diff changeset
124 if __name__ == '__main__':
313
04cf4d26a3bc Added constant function
Windel Bouwman
parents: 312
diff changeset
125 unittest.main()