-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathverify-targets
More file actions
executable file
·64 lines (59 loc) · 850 Bytes
/
Copy pathverify-targets
File metadata and controls
executable file
·64 lines (59 loc) · 850 Bytes
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
#!/usr/bin/env perl
use warnings;
use strict;
my @targets = qw(
dalec
drt
cstdio-arch
cstdio
cstring
pthread
cfloat
cctype
ctype
cerrno-arch
cerrno
ctime
clocale
cstdio-core
introspection
stdlib
macros
assert
concepts-core
concept-defs
concepts
cmath
math
cstdlib
csetjmp
csignal
unistd
shared-ptr
unique-ptr
utility
vector
list
set
map
array
algorithms
derivations
tests
documentation
programs
doc
);
my @failed_targets;
for my $target (@targets) {
my $res = system("make $target");
if ($res != 0) {
push @failed_targets, $target;
}
system("make clean");
}
if (@failed_targets) {
warn "Failed targets: ".(join ', ', @failed_targets);
exit(1);
}
1;