aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2021-03-23 11:48:17 -0400
committerGitHub <noreply@github.com>2021-03-23 17:48:17 +0200
commit1be13710adba2126f5731fccdf698a9d405a9d67 (patch)
tree6b2c2038b9003b3a85a265c1525daae9139b1a98 /run_unittests.py
parentde9df5128c03d016ec9463f705422f2e1df4c49a (diff)
downloadmeson-1be13710adba2126f5731fccdf698a9d405a9d67.zip
meson-1be13710adba2126f5731fccdf698a9d405a9d67.tar.gz
meson-1be13710adba2126f5731fccdf698a9d405a9d67.tar.bz2
environment(): Allow stacking append() and prepend() (#8547)
* environment(): Allow stacking append() and prepend() * Update docs/markdown/Reference-manual.md Co-authored-by: Elliott Sales de Andrade <quantum.analyst@gmail.com> Co-authored-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 28ef486..a53a43a 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -2525,17 +2525,6 @@ class AllPlatformTests(BasePlatformTests):
self.build()
self.run_tests()
- def test_env_ops_dont_stack(self):
- '''
- Test that env ops prepend/append do not stack, and that this usage issues a warning
- '''
- testdir = os.path.join(self.unit_test_dir, '63 test env does not stack')
- out = self.init(testdir)
- self.assertRegex(out, r'WARNING: Overriding.*TEST_VAR_APPEND')
- self.assertRegex(out, r'WARNING: Overriding.*TEST_VAR_PREPEND')
- self.assertNotRegex(out, r'WARNING: Overriding.*TEST_VAR_SET')
- self.run_tests()
-
def test_testrepeat(self):
testdir = os.path.join(self.common_test_dir, '207 tap tests')
self.init(testdir)