File: test

package info (click to toggle)
delay 1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 180 kB
  • sloc: ansic: 292; makefile: 91
file content (13 lines) | stat: -rwxr-xr-x 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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"