diff options
author | Michael Haberler <git@mah.priv.at> | 2011-08-23 10:14:25 +0200 |
---|---|---|
committer | Michael Haberler <git@mah.priv.at> | 2011-10-28 08:26:16 +0200 |
commit | 6e19e5f2822cddc5d54d1407d0bf86e38f42e933 (patch) | |
tree | bc6fd0c1dcbaf70d7e07d8a64428c6352e241f26 | |
parent | 7bda223ab132f5d39fb42693685a271f205999e7 (diff) | |
download | linuxcnc-6e19e5f2822cddc5d54d1407d0bf86e38f42e933.tar.gz linuxcnc-6e19e5f2822cddc5d54d1407d0bf86e38f42e933.zip |
tests/remap: adapt to new ini convention
-rw-r--r-- | tests/interp/pymove/test.ini | 4 | ||||
-rw-r--r-- | tests/remap/fail/body-py/test.ini | 5 | ||||
-rw-r--r-- | tests/remap/fail/epilog/test.ini | 5 | ||||
-rw-r--r-- | tests/remap/fail/prolog/test.ini | 7 | ||||
-rw-r--r-- | tests/remap/introspect/test.ini | 4 | ||||
-rw-r--r-- | tests/remap/oword-pycall/test.ini | 4 |
6 files changed, 15 insertions, 14 deletions
diff --git a/tests/interp/pymove/test.ini b/tests/interp/pymove/test.ini index fee9e4199..8ebcba50f 100644 --- a/tests/interp/pymove/test.ini +++ b/tests/interp/pymove/test.ini @@ -6,8 +6,8 @@ SUBROUTINE_PATH = . LOG_LEVEL=0 [PYTHON] -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL = subs.py LOG_LEVEL = 0 [CONFIG] XPOS = 33 diff --git a/tests/remap/fail/body-py/test.ini b/tests/remap/fail/body-py/test.ini index c2273803b..5df77d849 100644 --- a/tests/remap/fail/body-py/test.ini +++ b/tests/remap/fail/body-py/test.ini @@ -3,9 +3,8 @@ DEBUG=0 LOG_LEVEL=0 [PYTHON] -PARAMETER_FILE = sim.var -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL=subs.py LOG_LEVEL=0 [RS274NGC] diff --git a/tests/remap/fail/epilog/test.ini b/tests/remap/fail/epilog/test.ini index 7969c96a6..dad39f011 100644 --- a/tests/remap/fail/epilog/test.ini +++ b/tests/remap/fail/epilog/test.ini @@ -3,9 +3,8 @@ DEBUG=0 LOG_LEVEL=0 [PYTHON] -PARAMETER_FILE = sim.var -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL=subs.py LOG_LEVEL=0 [RS274NGC] diff --git a/tests/remap/fail/prolog/test.ini b/tests/remap/fail/prolog/test.ini index 3abf75ca2..7fe42c90f 100644 --- a/tests/remap/fail/prolog/test.ini +++ b/tests/remap/fail/prolog/test.ini @@ -8,5 +8,8 @@ SUBROUTINE_PATH = . REMAP=M400 modalgroup=5 prolog=failingprolog ngc=notcalled [PYTHON] -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL=subs.py + + + diff --git a/tests/remap/introspect/test.ini b/tests/remap/introspect/test.ini index ff0d9bd6d..be518ea5b 100644 --- a/tests/remap/introspect/test.ini +++ b/tests/remap/introspect/test.ini @@ -6,8 +6,8 @@ SUBROUTINE_PATH = . LOG_LEVEL=0 [PYTHON] -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL=subs.py [EXAMPLE] VARIABLE = 3.14159 diff --git a/tests/remap/oword-pycall/test.ini b/tests/remap/oword-pycall/test.ini index ad6ca0f9d..b04c7ff52 100644 --- a/tests/remap/oword-pycall/test.ini +++ b/tests/remap/oword-pycall/test.ini @@ -6,8 +6,8 @@ LOG_LEVEL=0 SUBROUTINE_PATH = . [PYTHON] -PLUGIN_DIR=. -MODULE_BASENAME=subs +PATH_PREPEND=. +TOPLEVEL=subs.py |