summaryrefslogtreecommitdiff
path: root/debian/tests/libc-link
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/libc-link')
-rwxr-xr-xdebian/tests/libc-link31
1 files changed, 31 insertions, 0 deletions
diff --git a/debian/tests/libc-link b/debian/tests/libc-link
new file mode 100755
index 0000000..e224a31
--- /dev/null
+++ b/debian/tests/libc-link
@@ -0,0 +1,31 @@
+#!/bin/sh
+# autopkgtest check: Build and run a simple program against libc, to verify
+# basic compile-time and run-time linking functionality.
+#
+# (C) 2012 Canonical Ltd.
+# Author: Martin Pitt <martin.pitt@ubuntu.com>
+
+set -e
+
+CC=gcc-9
+
+WORKDIR=$(mktemp -d)
+trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
+cd $WORKDIR
+cat <<EOF > libctest.c
+#include <string.h>
+#include <assert.h>
+
+int main()
+{
+ assert (1 > 0);
+ assert (strcmp ("hello", "hello") == 0);
+ return 0;
+}
+EOF
+
+$CC -o libctest libctest.c
+echo "build: OK"
+[ -x libctest ]
+./libctest
+echo "run: OK"