File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 5
5
packages :
6
6
- libgmp-dev
7
7
- valgrind
8
- - libtool-bin
9
8
compiler :
10
9
- clang
11
10
- gcc
@@ -41,7 +40,6 @@ matrix:
41
40
- gcc-multilib
42
41
- libgmp-dev:i386
43
42
- valgrind
44
- - libtool-bin
45
43
- libc6-dbg:i386
46
44
- compiler : clang
47
45
env : HOST=i686-linux-gnu
@@ -50,7 +48,6 @@ matrix:
50
48
packages :
51
49
- gcc-multilib
52
50
- valgrind
53
- - libtool-bin
54
51
- libc6-dbg:i386
55
52
- compiler : gcc
56
53
env : HOST=i686-linux-gnu ENDOMORPHISM=yes
@@ -59,7 +56,6 @@ matrix:
59
56
packages :
60
57
- gcc-multilib
61
58
- valgrind
62
- - libtool-bin
63
59
- libc6-dbg:i386
64
60
- compiler : gcc
65
61
env : HOST=i686-linux-gnu
@@ -69,7 +65,6 @@ matrix:
69
65
- gcc-multilib
70
66
- libgmp-dev:i386
71
67
- valgrind
72
- - libtool-bin
73
68
- libc6-dbg:i386
74
69
- compiler : gcc
75
70
env :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ int main(void) {
27
27
28
28
if (!RUNNING_ON_VALGRIND ) {
29
29
fprintf (stderr , "This test can only usefully be run inside valgrind.\n" );
30
- fprintf (stderr , "Usage: libtool --mode=execute valgrind ./valgrind_ctime_test\n" );
30
+ fprintf (stderr , "Usage: ./ libtool --mode=execute valgrind ./valgrind_ctime_test\n" );
31
31
exit (99 ); /* indicates "ERROR" in make check */
32
32
}
33
33
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
- libtool --mode=execute valgrind --error-exitcode=1 ./valgrind_ctime_test " $@ "
3
+ ./ libtool --mode=execute valgrind --error-exitcode=1 ./valgrind_ctime_test " $@ "
4
4
5
5
case $? in
6
- 127) # "command not found", i.e., either libtool or valgrind not installed
6
+ 127) # "command not found", i.e., valgrind not installed
7
7
exit 77 # map this to "SKIP" (=77) for make check
8
8
;;
9
9
* )
You can’t perform that action at this time.
0 commit comments