diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-10-09 19:57:55 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-10-09 19:57:55 -0400 |
commit | 5f184e3f98bbc59ca2d24729339535e208e7dc3a (patch) | |
tree | a289b6bcf8f6c5fa76a0393679f23089c94b28cf | |
parent | c56c34fa1c4c8bf7e10448804604edf600fdefa0 (diff) | |
download | kutter-5f184e3f98bbc59ca2d24729339535e208e7dc3a.tar.gz kutter-5f184e3f98bbc59ca2d24729339535e208e7dc3a.tar.xz kutter-5f184e3f98bbc59ca2d24729339535e208e7dc3a.zip |
test: Add a configfile test with unicode characters
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | test/klippy/macros.cfg | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/klippy/macros.cfg b/test/klippy/macros.cfg index 5604b507..a3488c21 100644 --- a/test/klippy/macros.cfg +++ b/test/klippy/macros.cfg @@ -112,6 +112,12 @@ gcode: M112 {% endif %} +# A utf8 test (with utf8 characters such as ° ) +[gcode_macro TEST_unicode] ; Also test end-of-line comments ( ° ) +variable_ABC: 25 # Another end-of-line comment test ( ° ) +description: A unicode test ° +gcode: G28 + # Main test start point [gcode_macro TESTIT] gcode: @@ -119,4 +125,5 @@ gcode: TEST_expression TEST_variable TEST_param T=123 + TEST_unicode TEST_in |