diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 7bdd57b..e8ecbb2 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -390,8 +390,11 @@ class BasePlatformTests(unittest.TestCase): return output def init(self, srcdir, extra_args=None, default_args=True): + self.assertTrue(os.path.exists(srcdir)) if extra_args is None: extra_args = [] + if not isinstance(extra_args, list): + extra_args = [extra_args] args = [srcdir, self.builddir] if default_args: args += ['--prefix', self.prefix, @@ -1374,6 +1377,14 @@ class LinuxlikeTests(BasePlatformTests): cpp = env.detect_cpp_compiler(False) self._test_stds_impl(testdir, cpp, 'cpp') + def test_unity_subproj(self): + testdir = os.path.join(self.common_test_dir, '49 subproject') + self.init(testdir, extra_args='--unity=subprojects') + self.assertTrue(os.path.exists(os.path.join(self.builddir, 'subprojects/sublib/simpletest@exe/simpletest-unity.c'))) + self.assertTrue(os.path.exists(os.path.join(self.builddir, 'subprojects/sublib/sublib@sha/sublib-unity.c'))) + self.assertFalse(os.path.exists(os.path.join(self.builddir, 'user@exe/user-unity.c'))) + self.build() + def test_installed_modes(self): ''' Test that files installed by these tests have the correct permissions. |