about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCamille Mougey <camille.mougey@cea.fr>2015-01-07 17:19:37 +0100
committerCamille Mougey <camille.mougey@cea.fr>2015-01-23 17:24:42 +0100
commit469a2cc1f5da9dc5157eaf9dd10bb6c1a0cfa334 (patch)
tree6a7e82146b2027ddd05cefcf93c5bc7cff648219
parentc0a74599627ed01c6e799d41905d449ba44b098b (diff)
downloadmiasm-469a2cc1f5da9dc5157eaf9dd10bb6c1a0cfa334.tar.gz
miasm-469a2cc1f5da9dc5157eaf9dd10bb6c1a0cfa334.zip
Example: Update comments (test_jit_* -> jit_*)
-rw-r--r--example/jit_arm.py2
-rw-r--r--example/jit_arm_sc.py2
-rw-r--r--example/jit_mips32.py2
-rw-r--r--example/jit_msp430.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/example/jit_arm.py b/example/jit_arm.py
index 2699c345..5342ee6d 100644
--- a/example/jit_arm.py
+++ b/example/jit_arm.py
@@ -7,7 +7,7 @@ from miasm2.analysis.sandbox import Sandbox_Linux_arml
 
 # Get arguments
 parser = Sandbox_Linux_arml.parser(description="""Sandbox an elf binary with arm
- engine (ex: test_jit_arm.py samples/md5_arm -a A684)""")
+ engine (ex: jit_arm.py samples/md5_arm -a A684)""")
 parser.add_argument("filename", help="ELF Filename")
 parser.add_argument('-v', "--verbose", help="verbose mode", action="store_true")
 options = parser.parse_args()
diff --git a/example/jit_arm_sc.py b/example/jit_arm_sc.py
index 0ec2a5ee..80714641 100644
--- a/example/jit_arm_sc.py
+++ b/example/jit_arm_sc.py
@@ -11,7 +11,7 @@ import logging
 from pdb import pm
 
 parser = Sandbox_Linux_arml_str.parser(description="""Sandbox an elf binary with arm engine
-(ex: test_jit_arm_sc.py example/demo_arm_l.bin)""")
+(ex: jit_arm_sc.py example/demo_arm_l.bin)""")
 parser.add_argument("filename", help="string Filename")
 parser.add_argument("endianess", help="endianness [b/l]")
 parser.add_argument('-v', "--verbose",
diff --git a/example/jit_mips32.py b/example/jit_mips32.py
index d027ec50..e41096cc 100644
--- a/example/jit_mips32.py
+++ b/example/jit_mips32.py
@@ -9,7 +9,7 @@ from pdb import pm
 
 parser = ArgumentParser(
     description="""Sandbox raw binary with mips32 engine
-(ex: test_jit_mips32.py example/mips32_sc_l.bin 0)""")
+(ex: jit_mips32.py example/mips32_sc_l.bin 0)""")
 parser.add_argument("-r", "--log-regs",
                     help="Log registers value for each instruction",
                     action="store_true")
diff --git a/example/jit_msp430.py b/example/jit_msp430.py
index 5aa1f340..d752ef8c 100644
--- a/example/jit_msp430.py
+++ b/example/jit_msp430.py
@@ -7,7 +7,7 @@ from miasm2.analysis.machine import Machine
 
 parser = ArgumentParser(
     description="""Sandbox raw binary with msp430 engine
-(ex: test_jit_msp430.py example/msp430_sc.bin 0)""")
+(ex: jit_msp430.py example/msp430_sc.bin 0)""")
 parser.add_argument("-r", "--log-regs",
                     help="Log registers value for each instruction",
                     action="store_true")