File: tinst

package info (click to toggle)
universal-ctags 0%2Bgit20200824-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 22,092 kB
  • sloc: ansic: 103,112; lisp: 7,241; sh: 6,962; vhdl: 5,924; perl: 2,014; cpp: 1,928; python: 1,828; javascript: 1,529; cs: 1,193; sql: 587; php: 544; f90: 534; makefile: 500; ruby: 498; yacc: 459; asm: 358; fortran: 341; xml: 308; objc: 289; ada: 273; tcl: 205; java: 157; cobol: 122; erlang: 61; ml: 49; awk: 43
file content (165 lines) | stat: -rw-r--r-- 2,757 bytes parent folder | download | duplicates (8)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/sh
#
#   Copyright (C) 2014 Masatake YAMATO
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.

TINST_ROOT=

ERROR ()
{
    local status=$1
    local msg=$2
    shift 2
    echo "$msg" 1>&2
    exit $status
}

MSG_title()
{
    printf '%-70s' "${1}"
}

MSG_passed()
{
    echo passed
}

MSG_failed()
{
    echo failed
}

MSG_done()
{
    echo done
}


T_existing()
{
    local f=$1
    shift
    local op
    local r=0

    for op in "$@"; do
	case "$op" in
	    -d)
		MSG_title "The existence of $f as a directory"
		;;	    
	    -f)
		MSG_title "The existence of $f as an file"
		;;
	    -r)
		MSG_title "The read mode of $f"
		;;
	    -x)
		MSG_title "The existence of $f as an executable"
		;;
	    *)
		MSG_title "The existence of $f with $op operator"
		;;
	esac
	if [ $op ${TINST_ROOT}/$f ]; then
	    MSG_passed
	else
	    MSG_failed
	    r=$(( r + 1 ))
	fi
    done
    return ${r}
}

prepare()
{
    local srcdir=$1
    local root=$2


    MSG_title "Preparing installation tests"
    
    if ! [ -e ${srcdir}/configure ]; then
	ERROR 2 "cannot find configure script"
    fi

    mkdir -p "$root"

    if ! [ -d "$root" ]; then
	ERROR 2 "failed in directory creation: $roo"
    fi

    rm Makefile

    if ! ${srcdir}/configure --prefix=$root > /dev/null; then
	ERROR 2 "failed in running configure script $root"
    fi

    if ! [ -e Makefile ]; then
	ERROR 2 "cannot find Makefile"
    fi

    if ! make > /dev/null; then
	ERROR 2 "failed in building ctags"
    fi

    if ! make install > /dev/null; then
	ERROR 2 "failed in installing ctags"
    fi    

    MSG_done
    return 0
}

cleanup()
{
    MSG_title "Cleanup installation tests"
    MSG_done
    return 0
}

check()
{
    T_existing /bin/ctags -f -x
    T_existing /bin/readtags -f -x

    T_existing /share/man/man1/ctags.1 -f -r
}

main()
{
    local srcdir
    local root
    local status

    if [ $# = 2 ]; then
	srcdir=$1
	root=$2
	shift 2
    else
	ERROR 2 "A installation root must be given as the first argument"
    fi
    
    prepare "${srcdir}" "${root}"

    TINST_ROOT=${root}
    check
    status=$?

    cleanup "${root}"

    return $status
}

main "$@"