Files
frida-frida-python/tests/data/__init__.py
T
Ole André Vadla Ravnås 98733a3388 Fix tests on OS X 10.11
Because `/bin/cat` is now considered a system program we are no longer
allowed to attach to it using `task_for_pid()`. Bundle our own test
program for Mac as a workaround.
2015-10-01 23:11:13 +02:00

15 lines
322 B
Python

# -*- coding: utf-8 -*-
import platform
import os
system = platform.system()
if system == 'Windows':
target_program = r"C:\Windows\notepad.exe"
elif system == 'Darwin':
target_program = os.path.join(os.path.dirname(__file__), "unixvictim-mac")
else:
target_program = "/bin/cat"
__all__ = ['target_program']