summaryrefslogtreecommitdiff
path: root/unittests/allplatformstests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-11-13 09:43:55 -0800
committerDylan Baker <dylan@pnwbakers.com>2025-11-19 10:48:48 -0800
commit0c8dcc8138bf47a73ff3add1c1a09ee900797f03 (patch)
treeb0fd3ea6785bd606d58bc3f8022fff7d7c6ba3e5 /unittests/allplatformstests.py
parentc914f805c63f0ba45b1aaf489a4cc5545ff66b59 (diff)
downloadmeson-0c8dcc8138bf47a73ff3add1c1a09ee900797f03.tar.gz
compilers: Remove Environment parameter from Compiler.symbols_have_underscore_prefix
Diffstat (limited to 'unittests/allplatformstests.py')
-rw-r--r--unittests/allplatformstests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py
index 3f78c72b4..385b195ea 100644
--- a/unittests/allplatformstests.py
+++ b/unittests/allplatformstests.py
@@ -2083,8 +2083,8 @@ class AllPlatformTests(BasePlatformTests):
against what was detected in the binary.
'''
env, cc = get_convincing_fake_env_and_cc(self.builddir, self.prefix)
- expected_uscore = cc._symbols_have_underscore_prefix_searchbin(env)
- list_uscore = cc._symbols_have_underscore_prefix_list(env)
+ expected_uscore = cc._symbols_have_underscore_prefix_searchbin()
+ list_uscore = cc._symbols_have_underscore_prefix_list()
if list_uscore is not None:
self.assertEqual(list_uscore, expected_uscore)
else:
@@ -2096,8 +2096,8 @@ class AllPlatformTests(BasePlatformTests):
against what was detected in the binary.
'''
env, cc = get_convincing_fake_env_and_cc(self.builddir, self.prefix)
- expected_uscore = cc._symbols_have_underscore_prefix_searchbin(env)
- define_uscore = cc._symbols_have_underscore_prefix_define(env)
+ expected_uscore = cc._symbols_have_underscore_prefix_searchbin()
+ define_uscore = cc._symbols_have_underscore_prefix_define()
if define_uscore is not None:
self.assertEqual(define_uscore, expected_uscore)
else: