File: test_multutils.sh

package info (click to toggle)
rumba-utils 1.0.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,764 kB
  • ctags: 414
  • sloc: sh: 7,541; cpp: 6,037; makefile: 1,127; xml: 605; perl: 70
file content (5 lines) | stat: -rwxr-xr-x 206 bytes parent folder | download
1
2
3
4
5
#!/bin/sh
matrix-transpose -i $1 -o tmp.txt
matrix-multiply -o testdata/out1.txt -i tmp.txt $1
./test_multutils $1 testdata/out2.txt
cmp testdata/out1.txt testdata/out2.txt && echo "Success" || echo "Fail"