diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-03-30 10:27:54 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-04-01 09:54:43 -0700 |
commit | d569d0bb3cf54620ddbd56485ebb700be8ffcf94 (patch) | |
tree | 61bdb31a57006a839f943cba043b460028a1997f /run_unittests.py | |
parent | f99ed692c4f10595ccb68407ca618e007125b853 (diff) | |
download | meson-d569d0bb3cf54620ddbd56485ebb700be8ffcf94.zip meson-d569d0bb3cf54620ddbd56485ebb700be8ffcf94.tar.gz meson-d569d0bb3cf54620ddbd56485ebb700be8ffcf94.tar.bz2 |
tests: Add a test for the _FOR_BUILD env vars
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 6e2b805..1ab4b37 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -9348,6 +9348,26 @@ class CrossFileTests(BasePlatformTests): break self.assertEqual(found, expected, 'Did not find all sections.') + def test_for_build_env_vars(self) -> None: + testcase = os.path.join(self.common_test_dir, '2 cpp') + config = self.helper_create_cross_file({'built-in options': {}}) + cross = self.helper_create_cross_file({'built-in options': {}}) + + self.init(testcase, extra_args=['--native-file', config, '--cross-file', cross], + override_envvars={'PKG_CONFIG_PATH': '/bar', 'PKG_CONFIG_PATH_FOR_BUILD': '/dir'}) + configuration = self.introspect('--buildoptions') + found = 0 + for each in configuration: + if each['name'] == 'pkg_config_path': + self.assertEqual(each['value'], ['/bar']) + found += 1 + elif each['name'] == 'build.pkg_config_path': + self.assertEqual(each['value'], ['/dir']) + found += 1 + if found == 2: + break + self.assertEqual(found, 2, 'Did not find all sections.') + class TAPParserTests(unittest.TestCase): def assert_test(self, events, **kwargs): |