about summary refs log tree commit diff
path: root/test/pamseq.test
blob: ea19013b48d7e2f24706ed1dd19c156b876d7c8c (plain) (blame)
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
#! /bin/bash
# This script tests: pamseq
# Also requires:

echo "Test 1"

pamseq 1 255 | cksum

echo "Test 2"

echo 1>&2
echo "Invalid command-line argument combinations." 1>&2
echo "Error messages should appear below the line." 1>&2
echo "-----------------------------------------------------------" 1>&2

pamseq 1 || echo "Expected error 1"
pamseq 0 255 || echo "Expected error 2"
pamseq 3 0   || echo "Expected error 3"

c64="0123456789012345678901234567890123456789012345678901234567890123"
c256=${c64}${c64}${c64}${c64}

# Tupletype string length=256

pamseq -tupletype="${c256}" 3 15 || echo "Expected error 4"