view python/testzcc.py @ 276:56d37ed4b4d2

phaa
author Windel Bouwman
date Mon, 16 Sep 2013 21:51:17 +0200
parents f5fba5b554d7
children
line wrap: on
line source

import unittest
import glob
import zcc
import outstream
import ppci

class ZccTestCase(unittest.TestCase):
    """ Tests the compiler driver """

    def do(self, fn):
        """ Compile blink.c3 """
        args = zcc.parser.parse_args([fn, '--package_dir', './c3/examples'])
        zcc.main(args)

    def testExamples(self):
        """ Test all examples in the c3/examples directory """
        example_filenames = glob.glob('./c3/examples/*.c3')
        for filename in example_filenames:
            self.do(filename)

    def testSectionAddress(self):
        src = "package tst; function void t2() {var int t3; t3 = 2;}"
        diag = ppci.DiagnosticsManager()
        outs = outstream.TextOutputStream()
        self.assertTrue(zcc.zcc(src, outs, diag))
        code = outs.getSection('code')
        self.assertEqual(0x08000000, code.address)
        data = outs.getSection('data')
        self.assertEqual(0x20000000, data.address)


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