malloca: Silence a warning from clang's memory sanitizer.
[gnulib.git] / tests / havelib / rpath-2_a
blob3570e44441a8aca0beb893ea0579f061186d8508
1 # Common portion of all rpath-2?a? tests.
3 tmpfiles=""
4 trap 'rm -fr $tmpfiles' 1 2 3 15
6 builddir=`pwd`
7 global_top_auxdir=`cd "$top_srcdir"/build-aux && pwd`
8 export global_top_auxdir
10 tstdir='tst/dir'
11 test -d $tstdir || { mkdir tst && mkdir $tstdir; }
13 tmpfiles="$tmpfiles $rp-prefix"
14 rm -rf $rp-prefix
15 mkdir $rp-prefix
17 tmpfiles="$tmpfiles $tstdir/$rp-build1"
18 rm -rf $tstdir/$rp-build1
19 mkdir $tstdir/$rp-build1
20 (cd $srcdir/rpathx && tar cf - *) | (cd $tstdir/$rp-build1 && tar xf -)
21 (cd $tstdir/$rp-build1
22  ${CONFIG_SHELL-/bin/sh} ./configure $build1_configure_flags --prefix=$builddir/$rp-prefix --libdir=$builddir/$rp-prefix/$LIBDIRSTEM > configure.log 2>&1
23  make > make.log 2>&1
24  make install > install.log 2>&1
26 if test $remove_la = yes; then
27   rm -f $rp-prefix/lib/librpathx.la
30 tmpfiles="$tmpfiles $tstdir/$rp-build2"
31 rm -rf $tstdir/$rp-build2
32 mkdir $tstdir/$rp-build2
33 (cd $srcdir/rpathy && tar cf - *) | (cd $tstdir/$rp-build2 && tar xf -)
34 (cd $tstdir/$rp-build2
35  ${CONFIG_SHELL-/bin/sh} ./configure $build2_configure_flags --prefix=$builddir/$rp-prefix --libdir=$builddir/$rp-prefix/$LIBDIRSTEM > configure.log 2>&1
36  make > make.log 2>&1
37  make install > install.log 2>&1
39 if test $remove_la = yes; then
40   rm -f $rp-prefix/lib/librpathy.la
43 tmpfiles="$tmpfiles $tstdir/$rp-build3"
44 rm -rf $tstdir/$rp-build3
45 mkdir $tstdir/$rp-build3
46 (cd $srcdir/$build3_package && tar cf - *) | (cd $tstdir/$rp-build3 && tar xf -)
47 (cd $tstdir/$rp-build3
48  ${CONFIG_SHELL-/bin/sh} ./configure --prefix=$builddir/$rp-prefix --libdir=$builddir/$rp-prefix/$LIBDIRSTEM > configure.log 2>&1
49  make > make.log 2>&1
50  make check >> make.log
52 result=$?
54 rm -rf $tmpfiles
56 exit $result