You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
813 B
34 lines
813 B
#!/usr/bin/python2
|
|
|
|
import os, shutil, tempfile, unittest
|
|
import common
|
|
|
|
_AUTOTEST_DIR = common.autotest_dir
|
|
|
|
|
|
class ClientCompilationTest(unittest.TestCase):
|
|
|
|
|
|
def _compile_module(self, module_name):
|
|
compile_script = os.path.join(_AUTOTEST_DIR, 'utils',
|
|
'compile_gwt_clients.py')
|
|
cmd = '%s -d -c %s -e "-validateOnly"' % (compile_script, module_name)
|
|
result = os.system(cmd)
|
|
self.assertEquals(result, 0)
|
|
|
|
|
|
def test_afe_compilation(self):
|
|
self._compile_module('autotest.AfeClient')
|
|
|
|
|
|
def test_tko_compilation(self):
|
|
self._compile_module('autotest.TkoClient')
|
|
|
|
|
|
def test_embedded_tko_compilation(self):
|
|
self._compile_module('autotest.EmbeddedTkoClient')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|