aboutsummaryrefslogtreecommitdiff
path: root/tests/ebreak.py
blob: 6c3ffdb71beec9779f3934ce2031c4eb00b73125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python

import os
import testlib
import unittest
import tempfile
import time

class EbreakTest(unittest.TestCase):
    def setUp(self):
        self.binary = testlib.compile("ebreak.s")

    def test_ebreak(self):
        """Make sure that we can run past ebreak without halting when a
        debugger isn't attached."""
        spike = testlib.spike(self.binary, with_gdb=False, timeout=10)
        result = spike.wait()
        self.assertEqual(result, 0)

if __name__ == '__main__':
    unittest.main()