source: MondoRescue/branches/3.3/mindi-busybox/testsuite/md5sum.tests@ 3647

Last change on this file since 3647 was 3621, checked in by Bruno Cornec, 10 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#!/bin/sh
2# Used by {ms5,shaN}sum
3
4# We pipe texts 0...999 bytes long, {md5,shaN}sum them,
5# then {md5,shaN}sum the resulting list.
6# Then we compare the result with expected result.
7#
8# Here are the expected results:
9# efe30c482e0b687e0cca0612f42ca29b
10# d41337e834377140ae7f98460d71d908598ef04f
11# 8e1d3ed57ebc130f0f72508446559eeae06451ae6d61b1e8ce46370cfb8963c3
12# fe413e0f177324d1353893ca0772ceba83fd41512ba63895a0eebb703ef9feac2fb4e92b2cb430b3bda41b46b0cb4ea8307190a5cc795157cfb680a9cd635d0f
13
14if ! test "$1"; then
15 set -- md5sum efe30c482e0b687e0cca0612f42ca29b
16fi
17
18sum="$1"
19expected="$2"
20
21test -f "$bindir/.config" && . "$bindir/.config"
22
23test x"$CONFIG_FEATURE_FANCY_HEAD" != x"y" \
24&& { echo "SKIPPED: $sum"; exit 0; }
25
26text="The quick brown fox jumps over the lazy dog"
27text=`yes "$text" | head -c 9999`
28
29result=`(
30n=0
31while test $n -le 999; do
32 echo "$text" | head -c $n | "$sum"
33 n=$(($n+1))
34done | "$sum"
35)`
36
37if test x"$result" = x"$expected -"; then
38 echo "PASS: $sum"
39 exit 0
40fi
41
42echo "FAIL: $sum (r:$result exp:$expected)"
43exit 1
Note: See TracBrowser for help on using the repository browser.