summaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 33174b191..56f2683bd 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -3747,6 +3747,19 @@ recommended as it is not supported on some platforms''')
testdir = os.path.join(self.unit_test_dir, '61 cmake parser')
self.init(testdir, extra_args=['-Dcmake_prefix_path=' + os.path.join(testdir, 'prefix')])
+ def test_alias_target(self):
+ if self.backend is Backend.vs:
+ # FIXME: This unit test is broken with vs backend, needs investigation
+ raise unittest.SkipTest('Skipping alias_target test with {} backend'.format(self.backend.name))
+ testdir = os.path.join(self.unit_test_dir, '62 alias target')
+ self.init(testdir)
+ self.build()
+ self.assertPathDoesNotExist(os.path.join(self.builddir, 'prog' + exe_suffix))
+ self.assertPathDoesNotExist(os.path.join(self.builddir, 'hello.txt'))
+ self.run_target('build-all')
+ self.assertPathExists(os.path.join(self.builddir, 'prog' + exe_suffix))
+ self.assertPathExists(os.path.join(self.builddir, 'hello.txt'))
+
class FailureTests(BasePlatformTests):
'''
Tests that test failure conditions. Build files here should be dynamically