;
; This file tests code page 1252 - US / Western European code page.
;
; See tests.txt for a desciption of the scipt format.
;

- match_default extended REG_EXTENDED

; start by testing character classes:
[[:lower:]]+  1 32
[[:upper:]]+  1 31
[[:punct:]]+  0 31
[[:print:]]+  0 94
[[:graph:]]+  0 94
[a-z]+  0 31
[a-z]+  1 31
[[:word:]]+  0 61
;and equivalence classes:
[[=a=]]+ aA 0 14

; and then test case mapping:
- match_default extended REG_EXTENDED REG_ICASE
;[A-Z]+  0 31
;[a-z]+  1 31
  1 30









