tests: better idiom to override make macro defs on the cmdline
[platform/upstream/automake.git] / t / ccnoco3.sh
1 #! /bin/sh
2 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Test to make sure 'compile' doesn't call 'mv SRC SRC'.
18
19 required=gcc
20 . test-init.sh
21
22 cat >> configure.ac << 'END'
23 AC_PROG_CC
24 AM_PROG_CC_C_O
25 $CC --version; $CC -v; # For debugging.
26 AC_OUTPUT
27 END
28
29 cat > Makefile.am << 'END'
30 AUTOMAKE_OPTIONS = subdir-objects
31 bin_PROGRAMS = wish
32 wish_SOURCES = a.c
33 END
34
35 mkdir sub
36
37 cat > a.c << 'END'
38 #include <stdio.h>
39
40 int main ()
41 {
42   printf ("hi\n");
43 }
44 END
45
46 cat > Mycomp << END
47 #!/bin/sh
48
49 case " \$* " in
50  *\ -c*\ -o* | *\ -o*\ -c*)
51     exit 1
52     ;;
53 esac
54
55 # Use '$CC', not 'gcc', to honour the compiler chosen
56 # by the testsuite setup.
57 exec $CC "\$@"
58 END
59
60 chmod +x Mycomp
61
62 # Make sure the compiler doesn't understand '-c -o'
63 CC=$(pwd)/Mycomp
64 export CC
65
66 $ACLOCAL
67 $AUTOCONF
68 $AUTOMAKE --copy --add-missing
69
70 mkdir build
71 cd build
72
73 ../configure
74 $MAKE 2>stderr || { cat stderr >&2; exit 1; }
75 cat stderr >&2
76 grep 'mv.*the same file' stderr && exit 1
77
78 :