Skip to content

Commit b06e817

Browse files
authored
Merge pull request #66 from angr/fix/multiprocess_test
mark multiprocess_find_gadgets local only
2 parents 86e2288 + f480d70 commit b06e817

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_find_gadgets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_badbyte():
3535

3636
assert all(gadget_exists(rop, x) for x in [0x080a9773, 0x08091cf5, 0x08092d80, 0x080920d3])
3737

38-
def test_multiprocess_find_gadgets():
38+
def local_multiprocess_find_gadgets():
3939
proj = angr.Project(os.path.join(tests_dir, "i386", "bronze_ropchain"), auto_load_libs=False)
4040
rop = proj.analyses.ROP()
4141

@@ -56,7 +56,7 @@ def run_all():
5656
for f in sorted(all_functions.keys()):
5757
if hasattr(all_functions[f], '__call__'):
5858
all_functions[f]()
59-
59+
local_multiprocess_find_gadgets()
6060

6161
if __name__ == "__main__":
6262
logging.getLogger("angrop.rop").setLevel(logging.DEBUG)

0 commit comments

Comments
 (0)