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 | |
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')
-rw-r--r-- | tests/cmdline/repl_basic.py.exp | 2 | ||||
-rw-r--r-- | tests/cmdline/repl_cont.py.exp | 2 | ||||
-rw-r--r-- | tests/cmdline/repl_emacs_keys.py.exp | 2 | ||||
-rw-r--r-- | tests/feature_check/repl_emacs_check.py.exp | 2 | ||||
-rwxr-xr-x | tests/run-bench-tests | 2 | ||||
-rwxr-xr-x | tests/run-tests | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/tests/cmdline/repl_basic.py.exp b/tests/cmdline/repl_basic.py.exp index 04887f44d9..1b4a497032 100644 --- a/tests/cmdline/repl_basic.py.exp +++ b/tests/cmdline/repl_basic.py.exp @@ -1,4 +1,4 @@ -Micro Python \.\+ version +MicroPython \.\+ version >>> # basic REPL tests >>> print(1) 1 diff --git a/tests/cmdline/repl_cont.py.exp b/tests/cmdline/repl_cont.py.exp index 185754799d..47a126643e 100644 --- a/tests/cmdline/repl_cont.py.exp +++ b/tests/cmdline/repl_cont.py.exp @@ -1,4 +1,4 @@ -Micro Python \.\+ version +MicroPython \.\+ version >>> # check REPL allows to continue input >>> 1 \\\\ ... + 2 diff --git a/tests/cmdline/repl_emacs_keys.py.exp b/tests/cmdline/repl_emacs_keys.py.exp index 8bbf08bd12..6edaf28130 100644 --- a/tests/cmdline/repl_emacs_keys.py.exp +++ b/tests/cmdline/repl_emacs_keys.py.exp @@ -1,4 +1,4 @@ -Micro Python \.\+ version +MicroPython \.\+ version >>> # REPL tests of GNU-ish readline navigation >>> # history buffer navigation >>> 1 diff --git a/tests/feature_check/repl_emacs_check.py.exp b/tests/feature_check/repl_emacs_check.py.exp index d3834429bd..e456ef3b0e 100644 --- a/tests/feature_check/repl_emacs_check.py.exp +++ b/tests/feature_check/repl_emacs_check.py.exp @@ -1,4 +1,4 @@ -Micro Python \.\+ version +MicroPython \.\+ version >>> # Check for emacs keys in REPL >>> t = \.\+ >>> t == 2 diff --git a/tests/run-bench-tests b/tests/run-bench-tests index 59074bb877..62f0833f41 100755 --- a/tests/run-bench-tests +++ b/tests/run-bench-tests @@ -58,7 +58,7 @@ def run_tests(pyb, test_dict): 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('--pyboard', action='store_true', help='run the tests on the pyboard') cmd_parser.add_argument('files', nargs='*', help='input test files') args = cmd_parser.parse_args() 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() |