#!/bin/sh
# autopkgtest check: Build and run a program against glib, to verify that the
# headers and pkg-config file are installed correctly
# Author: Kun-Hung Tsai (蔡昆宏) <moonape1226@gmail.com>

set -e

echo "run: Test example"
echo $(ls -al)
{ for i in {1..15}; do sleep $(bc <<< "scale=1;$i/10"); echo $i; done } |
    tee /dev/stderr | sed -u 's/^/\t/' | delay 1s

echo "run: OK"
