File: testAIO.sh

package info (click to toggle)
libmaus2 2.0.768%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 17,940 kB
  • sloc: cpp: 286,279; sh: 2,978; makefile: 2,624; ansic: 1,303
file content (16 lines) | stat: -rwxr-xr-x 240 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/bash
SCRIPTDIR=`dirname "${BASH_SOURCE[0]}"`
pushd ${SCRIPTDIR}
SCRIPTDIR=`pwd`
popd

source ${SCRIPTDIR}/configure.gz.sh

configure_sh > configure
../src/testAIO
RET=$?
rm -f configure

echo "Exiting with code ${RET}"

exit ${RET}