states/hl/cpp.st: Update C++ keyword list.
[enscript.git] / states / tests / icase.test
1 #!/bin/sh
2 #
3 # Test case-insensitive regular expressions.
4 #
5
6 . $srcdir/defs || exit 1
7
8 cat << EOF >data.in
9 AaAa
10 EOF
11
12 result=`$states --state=test_case_insensitive_regexps data.in 2>&1`
13 rm -f data.in
14
15 if test "X$result" != "Xok"; then
16   exit 1;
17 fi