diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-09-25 13:23:16 +0400 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2019-09-29 08:42:53 -0400 |
| commit | a65d5801f363f70c01bc76c562d9b9e820dc52aa (patch) | |
| tree | 8c50a9c7f66de012619e61a7dbdfaddd1bed0519 /test cases/unit | |
| parent | 18897b6afd35d7369658c9ecf562e2425256d6a9 (diff) | |
| download | meson-a65d5801f363f70c01bc76c562d9b9e820dc52aa.tar.gz | |
environment: Support taking values from dict
Related to #5955.
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/69 test env value/meson.build | 10 | ||||
| -rwxr-xr-x | test cases/unit/69 test env value/test.py | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test cases/unit/69 test env value/meson.build b/test cases/unit/69 test env value/meson.build new file mode 100644 index 000000000..aa3dbc35d --- /dev/null +++ b/test cases/unit/69 test env value/meson.build @@ -0,0 +1,10 @@ +project('test env value') + +testpy = find_program('test.py') + +val = ['1', '2', '3'] +foreach v: val + test('check env', testpy, args: [v], env: {'TEST_VAR': v}) +endforeach +test('check env', testpy, args: ['4'], env: environment({'TEST_VAR': '4'})) +test('check env', testpy, args: ['5'], env: environment(['TEST_VAR=5'])) diff --git a/test cases/unit/69 test env value/test.py b/test cases/unit/69 test env value/test.py new file mode 100755 index 000000000..0cc7645e7 --- /dev/null +++ b/test cases/unit/69 test env value/test.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import os +import sys + +assert(os.environ['TEST_VAR'] == sys.argv[1]) |
