From b5146c02effd53a8b71b2d10f95ecd2358f8241d Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 13 Jul 2021 10:34:21 +0200 Subject: run_unittests: add test for passing symlinks to setup and test --- run_unittests.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'run_unittests.py') diff --git a/run_unittests.py b/run_unittests.py index e8f453d..05c63d5 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -6896,6 +6896,18 @@ class LinuxlikeTests(BasePlatformTests): pcfile = f.read() self.assertFalse('blub_blob_blib' in pcfile) + def test_symlink_builddir(self): + ''' + Test using a symlink as either the builddir for "setup" or + the argument for "-C". + ''' + testdir = os.path.join(self.common_test_dir, '1 trivial') + os.symlink(self.builddir, self.builddir + '-symlink') + self.change_builddir(self.builddir + '-symlink') + self.init(testdir) + self.build() + self._run(self.mtest_command) + def test_vala_c_warnings(self): ''' Test that no warnings are emitted for C code generated by Vala. This -- cgit v1.1