diff options
author | Jez Ng <me@jezng.com> | 2013-07-15 14:36:28 -0700 |
---|---|---|
committer | Jez Ng <me@jezng.com> | 2013-07-15 14:36:28 -0700 |
commit | 61c31f69359132e7630a9c4c2c3d25a6ed742247 (patch) | |
tree | df58344e2bcd8de8aeea48d8b95e85903316b9b1 /tests/runner.py | |
parent | 392b7183a978fd1d62c29fc027973943fc440510 (diff) |
Use DLOPEN_SUPPORT instead of LINKABLE to enable self-dlopen.
Also address style feedback.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 89bf0c56..18d5f4d1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5887,7 +5887,7 @@ def process(filename): def test_dlfcn_self(self): if Settings.USE_TYPED_ARRAYS == 1: return self.skip('Does not work with USE_TYPED_ARRAYS=1') - Settings.LINKABLE = 1 + Settings.DLOPEN_SUPPORT = 1 src = r''' #include <stdio.h> |