#!/bin/sh # autopkgtest check: Build and run a simple program against libc, to verify # basic binutils compile-time and run-time linking functionality. # # (C) 2012 Canonical Ltd. # Author: Martin Pitt set -e WORKDIR=$(mktemp -d) trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM cd $WORKDIR cat < libctest.c #include #include int main() { assert (1 > 0); assert (strcmp ("hello", "hello") == 0); return 0; } EOF gcc -o libctest libctest.c echo "build: OK" [ -x libctest ] ./libctest echo "run: OK"