Guile: illustrate bug in non-ascii string handling

This commit is contained in:
Geert Janssens 2014-02-05 11:52:26 +01:00 committed by William S Fulton
commit e2ff217051

View file

@ -1,4 +1,6 @@
(define x "hello")
; The test string has some non-ascii characters added
; because our guile wrappers had bugs in that area
(define x "hello - æææ")
(if (not (string=? (test-value x) x))
(begin (error "Error 1") (exit 1)))