File: test10

package info (click to toggle)
diction 1.14-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 968 kB
  • sloc: sh: 3,413; ansic: 2,644; makefile: 89
file content (28 lines) | stat: -rwxr-xr-x 414 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

echo -n $0: 'Suffix matching... '

cat >test.in <<'eof'
It is not wise to use foowise.
eof

cat >test.db <<eof
wise	(avoid words that end in -wise)
eof

cat >test.ref <<eof
test.in:1.1-1.30: It is not wise to use foo[wise].

1 phrase in 1 sentence found.
eof

sh ./test/rundiction -f test.db test.in >test.data

if cmp test.ref test.data
then
  rm -f test.*
  echo passed
else
  echo failed
  exit 1
fi