File: testfakeact2.sh

package info (click to toggle)
eegdev 0.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,108 kB
  • sloc: ansic: 32,298; sh: 10,962; makefile: 252; lex: 138; yacc: 130; xml: 29
file content (19 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

export LD_PRELOAD=$builddir/fakelibs/.libs/libfakeact2.so
prg=sysbiosemi$EXEEXT

retval=0

if ! $prg -d 0 -c 1
then
	retval=1
fi

if ! $prg -d 1 -c 1
then
	retval=1
fi

exit $retval