Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / ACE / tests / non_mpc_makefile / Bug_3708_Regression.pl
blobab213eef4ca568b188f98d1f6f538c584de9cd96
1 eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
2 & eval 'exec perl -S $0 $argv:q'
3 if 0;
5 # -*- perl -*-
7 use lib "$ENV{ACE_ROOT}/bin";
9 # This test can't run on Win32
10 exit if ($^O eq 'MSWin32');
12 # This test can't be run if "make" is not in the path or if it resolves to
13 # a non-GNU version of make.
15 exit unless (`make --version` =~ /^GNU Make/);
17 print "Running non_mpc_makefile test:\n";
18 system "make -f CustomMakefile";
19 print "ERROR: libfoo.a not made\n" unless -r 'libfoo.a';
20 system "make -f CustomMakefile realclean";