diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-05-28 10:09:07 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-05-28 10:09:07 -0700 |
commit | 079a9b3e1f317d8e96602a44be4569d670905930 (patch) | |
tree | ac1849b6fcf41f4f49936b16ae50e4e717d094cd | |
parent | a2aef0f9212b0bc147aeb850c398b52ae98eaa3e (diff) |
fix slow2asm.test_dlfcn_self
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 1d04ebcb..281a3a0b 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -3244,7 +3244,7 @@ def process(filename): break else: raise Exception('Could not find symbol table!') - table = table[table.find('{'):table.rfind('}')+1] + table = table[table.find('{'):table.find('}')+1] # ensure there aren't too many globals; we don't want unnamed_addr assert table.count(',') <= 4 |