Hello, I'm trying to type specials characters (like '#','-', or '@') in a vm thru 'marionnette-type', but without success.
I use the procedure in a system test, like for example : (marionette-type "echo '-' > result\n" marionette) And when i call 'make check-system TESTS=my-special-character-test' and read back the file 'result', nothing in, it is empty. I try several escape sequences and all i get was errors or again nothing : \-, \\\-, \\#- => no compilation, make check-system complain with "invalid character in escape sequence:" \\#- => compilation is ok, but i got an error in the test "(unbound-variable #f "Unbound variable: ~S" (at\n) #f)" @-, \\\\-, \\#- => compilation is ok, but the character never comes back from the vm. Is anyone has a clue ? Thanks.