File: test

package info (click to toggle)
libusbauth-configparser 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 196 kB
  • sloc: ansic: 254; yacc: 68; lex: 30; makefile: 28; sh: 1
file content (15 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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: Check if library file exist"
if /sbin/ldconfig -p | grep libusbauth-configparser
then
    echo "run: Found libary"
else
    echo "run: Fail"
    exit 1
fi