blob: f8d453674a6e1fbfd244da416331da01d43c81ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
LC_ALL=C awk 'BEGIN {
print "flags"
print "verbose"
printf "get foo\n"
printf "put Δημοσθένους.example.com aaa\n"
printf "get Δημοσθένους.example.com\n"
printf "put %c%c%c xxx\n", 128, 128, 128
printf "get %c%c%c\n", 128, 128, 128
printf "put xxx %c%c%c\n", 128, 128, 128
printf "get xxx\n"
exit
}' | ${VALGRIND} ./dict_open internal:whatever write utf8_request
|