annotate test/testemulation.py @ 372:68841f9ab96c

Added yet another test snippet
author Windel Bouwman
date Fri, 21 Mar 2014 12:33:30 +0100
parents 9c95f93f5b7a
children 19eacf4f7270
rev   line source
338
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
1 import unittest
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
2 import os
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
3 import sys
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
4 import subprocess
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
5 import socket
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
6 import time
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
7
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
8 from testzcc import ZccBaseTestCase
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
9
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
10 # Store testdir for safe switch back to directory:
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
11 testdir = os.path.dirname(os.path.abspath(__file__))
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
12
369
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
13 def tryrm(fn):
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
14 try:
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
15 os.remove(fn)
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
16 except OSError:
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
17 pass
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
18
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
19 def runQemu(kernel, machine='lm3s811evb'):
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
20 """ Runs qemu on a given kernel file """
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
21
369
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
22 tryrm('qemucontrol.sock')
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
23 tryrm('qemuserial.sock')
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
24
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
25 # Listen to the control socket:
366
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
26 qemu_control_serve = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
27 qemu_control_serve.bind('qemucontrol.sock')
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
28 qemu_control_serve.listen(0)
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
29
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
30 # Listen to the serial output:
366
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
31 qemu_serial_serve = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
32 qemu_serial_serve.bind('qemuserial.sock')
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
33 qemu_serial_serve.listen(0)
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
34
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
35 args = ['qemu-system-arm', '-M', machine, '-m', '16M',
372
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
36 '-nographic',
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
37 '-kernel', kernel,
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
38 '-monitor', 'unix:qemucontrol.sock',
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
39 '-serial', 'unix:qemuserial.sock',
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
40 '-S']
370
f86e79246602 Remove null stdio
Windel Bouwman
parents: 369
diff changeset
41 p = subprocess.Popen(args)
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
42
372
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
43 #qemu_serial Give process some time to boot:
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
44 qemu_serial_serve.settimeout(3)
68841f9ab96c Added yet another test snippet
Windel Bouwman
parents: 371
diff changeset
45 qemu_control_serve.settimeout(3)
366
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
46 qemu_serial, address_peer = qemu_serial_serve.accept()
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
47 qemu_control, address_peer = qemu_control_serve.accept()
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
48
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
49 # Give the go command:
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
50 qemu_control.send('cont\n'.encode('ascii'))
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
51
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
52 qemu_serial.settimeout(0.2)
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
53
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
54 # Receive all data:
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
55 data = bytearray()
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
56 for i in range(400):
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
57 try:
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
58 data += qemu_serial.recv(1)
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
59 except socket.timeout as e:
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
60 break
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
61 data = data.decode('ascii')
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
62 # print(data)
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
63
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
64 # Send quit command:
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
65 qemu_control.send("quit\n".encode('ascii'))
371
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
66 if hasattr(subprocess, 'TimeoutExpired'):
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
67 try:
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
68 p.wait(timeout=3)
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
69 except subprocess.TimeoutExpired:
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
70 p.kill()
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
71 else:
9c95f93f5b7a Python 3.2 compatible issues
Windel Bouwman
parents: 370
diff changeset
72 time.sleep(2)
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
73 p.kill()
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
74 qemu_control.close()
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
75 qemu_serial.close()
366
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
76 qemu_control_serve.close()
39bf68bf1891 Fix sample tests and deterministic build
Windel Bouwman
parents: 364
diff changeset
77 qemu_serial_serve.close()
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
78
369
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
79 tryrm('qemucontrol.sock')
5333318ee33d Python 3.2 compatible issues
Windel Bouwman
parents: 366
diff changeset
80 tryrm('qemuserial.sock')
364
c49459768aaa Work on globals
Windel Bouwman
parents: 361
diff changeset
81
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
82 # Check that output was correct:
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
83 return data
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
84
338
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
85
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
86 class EmulationTestCase(ZccBaseTestCase):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
87 """ Tests the compiler driver """
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
88 def setUp(self):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
89 if 'TESTEMU' not in os.environ:
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
90 self.skipTest('Not running emulation tests')
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
91
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
92 def testM3Bare(self):
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
93 """ Build bare m3 binary and emulate it """
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
94 recipe = os.path.join(testdir, 'm3_bare', 'recipe.yaml')
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
95 self.buildRecipe(recipe)
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
96 data = runQemu('m3_bare/bare.bin')
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
97 self.assertEqual('Hello worle', data)
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
98
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
99 def testA9Bare(self):
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
100 """ Build vexpress cortex-A9 binary and emulate it """
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
101 recipe = os.path.join(testdir, '..', 'examples', 'qemu_a9_hello', 'recipe.yaml')
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
102 self.buildRecipe(recipe)
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
103 data = runQemu('../examples/qemu_a9_hello/hello.bin', machine='vexpress-a9')
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 340
diff changeset
104 self.assertEqual('Hello worle', data)
338
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
105
352
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
106 def testKernelVexpressA9(self):
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
107 """ Build vexpress cortex-A9 binary and emulate it """
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
108 recipe = os.path.join(testdir, '..', 'kernel', 'arm.yaml')
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
109 self.buildRecipe(recipe)
355
c2ddc8a36f5e Enabled optimization
Windel Bouwman
parents: 354
diff changeset
110 data = runQemu('../kernel/kernel_arm.bin', machine='vexpress-a9')
361
614a7f6d4d4d Fixed test
Windel Bouwman
parents: 356
diff changeset
111 self.assertEqual('Welcome to lcfos!', data[:17])
352
899ae3aea803 First kernel run for vexpressA9
Windel Bouwman
parents: 346
diff changeset
112
338
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
113
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
114 if __name__ == '__main__':
8eb4a6fe8fc8 Added testcase with emulator
Windel Bouwman
parents:
diff changeset
115 unittest.main()