File: gui

package info (click to toggle)
pymca 5.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 44,760 kB
  • sloc: python: 159,424; ansic: 15,848; lisp: 2,957; xml: 193; makefile: 115; sh: 100
file content (38 lines) | stat: -rwxr-xr-x 780 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh

# silent matplotlib
export MPLCONFIGDIR=${AUTOPKGTEST_TMP}

# silent qt
mkdir -p ${AUTOPKGTEST_TMP}/run
chmod 700 ${AUTOPKGTEST_TMP}/run
export XDG_RUNTIME_DIR=${AUTOPKGTEST_TMP}/run

# export a writable home for pymca fit directory
export HOME=${AUTOPKGTEST_TMP}

glxinfo

allpkg=$(dh_listpackages)

for p in $allpkg; do
    echo -n "Package $p: "
    allbinaries=$(dpkg -L "$p"| grep "/usr/bin/")
    if [ -z "$allbinaries" ]; then
	echo "nothing to do"
	continue
    fi
    echo ''
    for f in $allbinaries; do
	timeout --preserve-status 5s "$f"
	ec=$?
	echo -n "  -testing $f: $ec "
	if [ $ec -eq 143 ]; then
	    echo "trapped (SIGTERM) This is not an error"
	elif [ $ec -eq 2 ]; then
	    echo "Skipped exit code 2 for $f"
	else
	    echo "ok"
	fi
    done
done