Tests injecting python in remote process now check that target python is installed

This commit is contained in:
hakril
2018-03-28 23:14:41 +02:00
parent 9e1400e4ad
commit e918d735a1
8 changed files with 59 additions and 21 deletions
+3
View File
@@ -353,6 +353,8 @@ def test_memory_breakpoint_exec(proc32_64_debug):
# breakpoint remove
import threading
@python_injection
@pytest.mark.parametrize("bptype", [windows.debug.FunctionParamDumpHXBP, windows.debug.FunctionParamDumpBP])
def test_standard_breakpoint_self_remove(proc32_64_debug, bptype):
data = []
@@ -379,6 +381,7 @@ def test_standard_breakpoint_self_remove(proc32_64_debug, bptype):
d.loop()
assert data == [u"FILENAME1", u"FILENAME2"]
@python_injection
@pytest.mark.parametrize("bptype", [windows.debug.FunctionParamDumpHXBP, windows.debug.FunctionParamDumpBP])
def test_standard_breakpoint_remove(proc32_64_debug, bptype):
data = []