File: adler.test

package info (click to toggle)
tcltrf 2.1.4-dfsg3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,628 kB
  • sloc: ansic: 73,134; sh: 3,155; tcl: 1,343; makefile: 176; exp: 22
file content (30 lines) | stat: -rw-r--r-- 894 bytes parent folder | download | duplicates (6)
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
29
30
# -*- tcl -*-
# Commands covered:	adler
#
# This file contains a collection of tests for one or more of the commands
# the TRF extension. Sourcing this file into Tcl runs the tests and generates
# output for errors.  No output means no errors were found.
#
# Copyright (c) 1996 Andreas Kupries (andreas_kupries@users.sourceforge.net)
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# $Id: adler.test,v 1.4 1999/06/15 18:10:40 aku Exp $

if {[string compare test [info procs test]] == 1} then {source defs}


foreach {i in digest} {
    0 {hello world} 1A0B045D
} {
    if {[info tclversion] < 8.0} {
	test adler-4.$i-7.6 {adler, immediate} {hasZlib} {
	    exec_md adler [text2hex $in]
	} $digest
    } else {
	test adler-4.$i-8.x {adler, immediate} {hasZlib} {
	    hex -m e [adler $in]
	} $digest
    }
}