File: test-complex-float.sh

package info (click to toggle)
rtfilter 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, trixie, wheezy
  • size: 1,792 kB
  • ctags: 544
  • sloc: sh: 11,062; ansic: 2,317; makefile: 115
file content (20 lines) | stat: -rwxr-xr-x 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

LOGFILE=testcf.log

if { 
    cmpwmatlab* -d 0 -p 2 -c 15 \
 && cmpwmatlab* -d 0 -p 2 -c 16 \
 && cmpwmatlab* -d 2 -p 0 -c 16 \
 && cmpwmatlab* -d 2 -p 0 -c 15 \
 && cmpwmatlab* -d 2 -p 2 -c 16 \
 && cmpwmatlab* -d 2 -p 2 -c 15
} > $LOGFILE
then
	rm $LOGFILE
	stty echo
	exit 0
else
	stty echo
	exit 1
fi