File: test-lists.sh

package info (click to toggle)
enca 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,948 kB
  • sloc: ansic: 10,297; sh: 5,858; xml: 2,132; makefile: 700; perl: 261
file content (8 lines) | stat: -rwxr-xr-x 258 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#! /bin/sh
# Purpose: check whether enca can list all the lists.  It used to crash ;-)
. $srcdir/setup.sh
$ENCA  --list lists >$TESTNAME.actual || DIE=1
for l in `$ENCA --list lists`; do
  $ENCA --list $l >>$TESTNAME.actual || DIE=1
done
. $srcdir/finish.sh