diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-12 00:06:25 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-12 00:06:25 +0100 |
commit | 0334058fa43a8ac7c689007f5824510c2927c5cc (patch) | |
tree | 0abd0f6efd70aa922d0cb14a8c06c38bc957b276 /tests/run-tests | |
parent | 6206f431cf50741f633762dac185421e4c4f1a0d (diff) | |
download | micropython-0334058fa43a8ac7c689007f5824510c2927c5cc.tar.gz micropython-0334058fa43a8ac7c689007f5824510c2927c5cc.zip |
Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.
Diffstat (limited to 'tests/run-tests')
-rwxr-xr-x | tests/run-tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-tests b/tests/run-tests index 0c344b96d8..371accb8a9 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -311,7 +311,7 @@ def run_tests(pyb, tests, args): return True def main(): - cmd_parser = argparse.ArgumentParser(description='Run tests for Micro Python.') + cmd_parser = argparse.ArgumentParser(description='Run tests for MicroPython.') cmd_parser.add_argument('--target', default='unix', help='the target platform') cmd_parser.add_argument('--device', default='/dev/ttyACM0', help='the serial device or the IP address of the pyboard') cmd_parser.add_argument('-b', '--baudrate', default=115200, help='the baud rate of the serial device') @@ -319,7 +319,7 @@ def main(): cmd_parser.add_argument('-p', '--password', default='python', help='the telnet login password') cmd_parser.add_argument('-d', '--test-dirs', nargs='*', help='input test directories (if no files given)') cmd_parser.add_argument('--write-exp', action='store_true', help='save .exp files to run tests w/o CPython') - cmd_parser.add_argument('--emit', default='bytecode', help='Micro Python emitter to use (bytecode or native)') + cmd_parser.add_argument('--emit', default='bytecode', help='MicroPython emitter to use (bytecode or native)') cmd_parser.add_argument('files', nargs='*', help='input test files') args = cmd_parser.parse_args() |