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/hello-world | |
parent | Adding upstream version 1.20.14. (diff) | |
download | golang-1.20-debian.tar.xz golang-1.20-debian.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/hello-world')
-rw-r--r-- | debian/tests/hello-world | 20 |
1 files changed, 20 insertions, 0 deletions
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 |