File: test-with-example-data

package info (click to toggle)
boxshade 3.3.1-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 684 kB
  • sloc: ansic: 11,264; xml: 671; sh: 28; makefile: 12
file content (17 lines) | stat: -rwxr-xr-x 493 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

# Create a temporary file

TEST_OUTPUT=$(mktemp)

# Run on alignments in MSF or ALN format, and compare to reference ASCII output.

boxshade -in=/usr/share/doc/boxshade/examples/input.msf -out=$TEST_OUTPUT -def -dev=b > /dev/null
diff $TEST_OUTPUT /usr/share/doc/boxshade/examples/output.txt

boxshade -in=/usr/share/doc/boxshade/examples/input.msf -out=$TEST_OUTPUT -def -dev=b > /dev/null
diff $TEST_OUTPUT /usr/share/doc/boxshade/examples/output.txt

# Clean

rm $TEST_OUTPUT