File: upstream-tests

package info (click to toggle)
pound 4.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,008 kB
  • sloc: ansic: 26,296; perl: 2,311; makefile: 242; sh: 42; sed: 18
file content (21 lines) | stat: -rwxr-xr-x 500 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

autoreconf -fi
./configure

# copied from .github/workflows/testsuite.yml, lines 42-56
if ! make check; then
    for dir in tests/testsuite.dir/*
    do
        echo "Test $(basename $dir)"
        for file in testsuite.log xscript.log pound.log pound.cfi pound.cfg input
        do
            if test -f $dir/$file; then
                echo "File $file"
                echo "File $file"|sed -e 's/./=/g'
                cat $dir/$file
            fi
        done
    done
    false
fi