#!/bin/dash
# 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"
ls -al
{ for i in $(seq 1 5); do sleep "$(( $i/10 ))"; echo "$i"; done } |
    sed -u 's/^/\t/' | delay 1s

echo "run: OK"
