mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
add multibyte regexp test
* test-suite/standalone/Makefile.am: * test-suite/standalone/test-mb-regexp: New test, that the previous patch fixed the abort() on fixup_multibyte_match.
This commit is contained in:
parent
95f5e303bc
commit
f80ed1be36
2 changed files with 43 additions and 0 deletions
|
@ -143,6 +143,10 @@ TESTS += test-loose-ends
|
||||||
check_SCRIPTS += test-fast-slot-ref
|
check_SCRIPTS += test-fast-slot-ref
|
||||||
TESTS += test-fast-slot-ref
|
TESTS += test-fast-slot-ref
|
||||||
|
|
||||||
|
# test-mb-regexp
|
||||||
|
check_SCRIPTS += test-mb-regexp
|
||||||
|
TESTS += test-mb-regexp
|
||||||
|
|
||||||
# test-use-srfi
|
# test-use-srfi
|
||||||
check_SCRIPTS += test-use-srfi
|
check_SCRIPTS += test-use-srfi
|
||||||
TESTS += test-use-srfi
|
TESTS += test-use-srfi
|
||||||
|
|
39
test-suite/standalone/test-mb-regexp
Executable file
39
test-suite/standalone/test-mb-regexp
Executable file
|
@ -0,0 +1,39 @@
|
||||||
|
#!/bin/sh
|
||||||
|
exec guile -q -s "$0" "$@"
|
||||||
|
!#
|
||||||
|
;;; test-mb-regexp --- A multibyte regexp test
|
||||||
|
;;;
|
||||||
|
;;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
|
||||||
|
;;;
|
||||||
|
;;; This library is free software; you can redistribute it and/or
|
||||||
|
;;; modify it under the terms of the GNU Lesser General Public
|
||||||
|
;;; License as published by the Free Software Foundation; either
|
||||||
|
;;; version 3 of the License, or (at your option) any later version.
|
||||||
|
;;;
|
||||||
|
;;; This library is distributed in the hope that it will be useful,
|
||||||
|
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
;;; Lesser General Public License for more details.
|
||||||
|
;;;
|
||||||
|
;;; You should have received a copy of the GNU Lesser General Public
|
||||||
|
;;; License along with this library; if not, write to the Free Software
|
||||||
|
;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
;; This test depends on not setting the locale -- that multibyte strings
|
||||||
|
;; don't trigger the abort in regexp.c:fixup_multibyte_match.
|
||||||
|
|
||||||
|
(use-modules (ice-9 regex))
|
||||||
|
|
||||||
|
(exit (if (equal?
|
||||||
|
(match:substring
|
||||||
|
(regexp-exec
|
||||||
|
(make-regexp "(.)(.)(.)")
|
||||||
|
(string (integer->char 200) #\x (integer->char 202)))
|
||||||
|
2)
|
||||||
|
"x")
|
||||||
|
0
|
||||||
|
1))
|
||||||
|
|
||||||
|
;; Local Variables:
|
||||||
|
;; mode: scheme
|
||||||
|
;; End:
|
Loading…
Add table
Add a link
Reference in a new issue