diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:23:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:23:19 +0000 |
commit | 7b866744951dd6d5e9c7fa982b1f5672d653feb4 (patch) | |
tree | 5d2a761f938c68b62e11301dc7b93e2ed63dbd50 /debian/tests | |
parent | Adding upstream version 1.20.14. (diff) | |
download | golang-1.20-7b866744951dd6d5e9c7fa982b1f5672d653feb4.tar.xz golang-1.20-7b866744951dd6d5e9c7fa982b1f5672d653feb4.zip |
Adding debian version 1.20.14-2.debian/1.20.14-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests')
-rw-r--r-- | debian/tests/control | 7 | ||||
-rw-r--r-- | debian/tests/hello-world | 20 | ||||
-rw-r--r-- | debian/tests/regression-test | 8 |
3 files changed, 35 insertions, 0 deletions
diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..9bf42b2 --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,7 @@ +Tests: hello-world +Depends: @, build-essential +Restrictions: allow-stderr, superficial + +Tests: regression-test +Depends: @, build-essential +Restrictions: allow-stderr diff --git a/debian/tests/hello-world b/debian/tests/hello-world new file mode 100644 index 0000000..1b8be0d --- /dev/null +++ b/debian/tests/hello-world @@ -0,0 +1,20 @@ +#!/bin/sh + +set -ex + +GO="/usr/lib/go-$(dpkg-parsechangelog -SSource | sed 's/golang-//')/bin/go" + +WORKDIR=$(mktemp -d) +trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM +cd $WORKDIR +cat <<EOF > hello.go +package main +import "fmt" +func main() { + fmt.Println("hello world") +} +EOF + +$GO run hello.go +$GO build hello.go +./hello diff --git a/debian/tests/regression-test b/debian/tests/regression-test new file mode 100644 index 0000000..00c12a1 --- /dev/null +++ b/debian/tests/regression-test @@ -0,0 +1,8 @@ +#!/bin/sh + +set -ex + +VER="$(dpkg-parsechangelog -SSource | sed 's/golang-//')" + +cd "/usr/lib/go-$VER/test" +"/usr/lib/go-$VER/bin/go" run run.go -v |