File: execution_test.sh

package info (click to toggle)
argagg 0.4.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,884 kB
  • sloc: xml: 35,489; cpp: 2,782; sh: 9; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

cp debian/tests/testfiles/* $AUTOPKGTEST_TMP

cd "$AUTOPKGTEST_TMP"

echo "Compiling file ..."

g++ execution.cpp -o execution

echo "Done"

./execution --name Debian | grep 'Hello, Debian!'
./execution --help | grep 'show help'

exit 0