diff options
Diffstat (limited to 'unittests')
| -rw-r--r-- | unittests/allplatformstests.py | 8 |
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: |
