blob: bc3cf3e072965a6258b321d9d172423fbe000efa (
plain)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
#!/bin/sh
set -e -x
# TODO. Several variables are not properly quoted/escaped where they are
# passed to another shell.
project=$1
build_suffix=.build
case $project in
binutils | gcc)
branch=hurd/master
linux_host=kepler.SCHWINGE
hurd_host=coulomb.SCHWINGE
;;
glibc)
branch=tschwinge/Roger_Whittaker
#linux_host=kepler.SCHWINGE
hurd_host=coulomb.SCHWINGE
build_suffix=.build-gcc-4.6-486
;;
*)
echo >&2 "Don't know about project »$project«."
exit 1
;;
esac
shift
step=$1
case $step in
build | install | test)
;;
'')
# If there is no step specified, try a default set.
"$0" "$project" build
"$0" "$project" install
"$0" "$project" test
exit
;;
*)
echo >&2 "Don't know about step »$step«."
exit 1
;;
esac
shift
action=$1
case $action in
fetch | diff)
;;
'')
# If there is no action specified, try a default set.
"$0" "$project" "$step" fetch
"$0" "$project" "$step" diff
exit
;;
*)
echo >&2 "Don't know about action »$action«."
exit 1
;;
esac
shift
case $project:$action in
binutils:fetch | gcc:fetch | glibc:fetch)
host=$1
case $host in
coulomb.SCHWINGE)
project_base=tmp/"$project"
mount=/media/erich
;;
kepler.SCHWINGE)
project_base=tmp/source/"$project"
mount=/media/data
;;
'')
# If there is no host specified, try a default set.
: "${linux_host:?}"
: "${hurd_host:?}"
"$0" "$project" "$step" "$action" "$linux_host"
"$0" "$project" "$step" "$action" "$hurd_host"
exit
;;
*)
echo >&2 "Don't know about host »$host«."
exit 1
;;
esac
shift
[ $# = 0 ]
: "${branch:?}"
: "${build_suffix:?}"
: "${host:?}"
: "${mount:?}"
: "${project_base:?}"
case $project:$step in
binutils:build | binutils:install \
| gcc:build | gcc:install \
| glibc:build | glibc:install | glibc:test)
ssh \
"$host" \
'cd '"$project_base"'/ && \
cat '"$branch$build_suffix"'/log_'"$step"'* \
| sed -e "s%\('"$mount"'\)\?${PWD}%[...]%g"' \
> toolchain/logs/"$project"/"$host"/"$step"
exit
;;
binutils:test | gcc:test)
rsync \
-vd --delete \
--rsync-path='\
cd '"$project_base"'/ && \
base=$PWD && \
rm -rf '"$branch$build_suffix"'.sums && \
mkdir '"$branch$build_suffix"'.sums && \
cd '"$branch$build_suffix"'.sums/ && \
find "$base"/'"$branch$build_suffix"'/ -name \*.sum \
-exec cp -bt ./ \{\} \; && \
for f in *; do \
sed -e "s%\('"$mount"'\)\?${base}%[...]%g" -i "$f" \
|| exit $?; \
done &&\
rsync' "$host": \
toolchain/logs/"$project"/"$host"/"$step"/
exit
;;
*)
echo >&2 "Internal error."
exit 1
;;
esac
;;
binutils:diff | gcc:diff)
[ $# = 0 ]
: "${linux_host:?}"
: "${hurd_host:?}"
case $project:$step in
binutils:build | binutils:install \
| gcc:build | gcc:install)
sed \
-f toolchain/logs/"$project"/"$linux_host"/"$step".sed \
< toolchain/logs/"$project"/"$linux_host"/"$step" \
> toolchain/logs/"$project"/"$linux_host"/"$step"_
sed \
-f toolchain/logs/"$project"/"$hurd_host"/"$step".sed \
< toolchain/logs/"$project"/"$hurd_host"/"$step" \
> toolchain/logs/"$project"/"$hurd_host"/"$step"_
r=0
diff \
-wu -F ^Running \
toolchain/logs/"$project"/"$linux_host"/"$step"_ \
toolchain/logs/"$project"/"$hurd_host"/"$step"_ \
> toolchain/logs/"$project"/"$step".diff \
|| r=$?
rm \
-f \
toolchain/logs/"$project"/"$linux_host"/"$step"_ \
toolchain/logs/"$project"/"$hurd_host"/"$step"_
[ "$r" = 0 ] || [ "$r" = 1 ]
exit
;;
binutils:test | gcc:test)
r=0
diff \
-Nrwu -F ^Running \
toolchain/logs/"$project"/"$linux_host"/"$step"/ \
toolchain/logs/"$project"/"$hurd_host"/"$step"/ \
> toolchain/logs/"$project"/"$step".diff \
|| r=$?
[ "$r" = 0 ] || [ "$r" = 1 ]
exit
;;
*)
echo >&2 "Internal error."
exit 1
;;
esac
;;
*)
echo >&2 "Internal error."
exit 1
;;
esac
echo >&2 "Internal error."
exit 1
|