File: test-lists.sh

package info (click to toggle)
enca 1.13-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,440 kB
  • sloc: sh: 11,125; ansic: 10,330; xml: 2,926; makefile: 698; perl: 232
file content (9 lines) | stat: -rwxr-xr-x 321 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#! /bin/sh
# @(#) $Id: test-lists.sh,v 1.5 2003/11/17 12:27:40 yeti Exp $
# 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