aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/63 test env does not stack
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 /test cases/unit/63 test env does not stack
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 'test cases/unit/63 test env does not stack')
-rw-r--r--test cases/unit/63 test env does not stack/meson.build12
-rwxr-xr-xtest cases/unit/63 test env does not stack/script.py9
2 files changed, 0 insertions, 21 deletions
diff --git a/test cases/unit/63 test env does not stack/meson.build b/test cases/unit/63 test env does not stack/meson.build
deleted file mode 100644
index 01f2637..0000000
--- a/test cases/unit/63 test env does not stack/meson.build
+++ /dev/null
@@ -1,12 +0,0 @@
-project('test env var stacking')
-
-testenv = environment()
-testenv.set('TEST_VAR_SET', 'some-value')
-testenv.set('TEST_VAR_APPEND', 'some-value')
-testenv.set('TEST_VAR_PREPEND', 'some-value')
-
-testenv.append('TEST_VAR_APPEND', 'another-value-append', separator: ':')
-testenv.prepend('TEST_VAR_PREPEND', 'another-value-prepend', separator: ':')
-testenv.set('TEST_VAR_SET', 'another-value-set')
-
-test('check env', find_program('script.py'), env: testenv)
diff --git a/test cases/unit/63 test env does not stack/script.py b/test cases/unit/63 test env does not stack/script.py
deleted file mode 100755
index 2a76673..0000000
--- a/test cases/unit/63 test env does not stack/script.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env python3
-
-import os
-
-for name in ('append', 'prepend', 'set'):
- envname = 'TEST_VAR_' + name.upper()
- value = 'another-value-' + name
- envvalue = os.environ[envname]
- assert (envvalue == value), (name, envvalue)