test/mult-install.sh
author J. Ali Harlow <ali@juiblex.co.uk>
Sat Oct 04 18:12:58 2014 +0100 (2014-10-04)
changeset 454 56ff755c268c
parent 387 ef9237601f24
child 456 bae5adee8c8c
permissions -rwxr-xr-x
Only export symbols starting with razor_ in dynamic library.

Apart from being good practice to avoid clashes with higher-level
libraries and the application, this also fixes an obscure bug: The
gnulib library is used both by librazor (the dynamic library) and
by razor (the executable). In doing so, we want to have two separate
copies of the library despite the code duplication this involves.
Without the explicit limit to export only razor_ symbols, the razor
executable under mingw64 was picking up the getopt_long function
from librazor and the optind variable from libgnu which meant that
it did not see optind changing. Hiding librazor's copy of getopt
causes the linker to find libgnu's copy and everything works.

Note that under mingw librazor-#.dll still contains undocumented
(private) razor_ symbols but these will do no harm as long as nobody
tries to use them.
     1 #!/bin/sh
     2 fs_check_file()
     3 {
     4     if [ ! -e "$RAZOR_ROOT$1" ]; then 
     5 	echo $1: Not in filesystem >&2
     6 	ls -R "$RAZOR_ROOT" >&2
     7 	exit 1
     8     fi
     9 }
    10 fs_check_file_contents()
    11 {
    12     fs_check_file "$1"
    13     if [ `cat "$RAZOR_ROOT$1"` != "$2" ]; then
    14 	echo $1: Unexpected contents >&2
    15 	cat "$RAZOR_ROOT$1" >&2
    16 	exit 1
    17     fi
    18 }
    19 fs_check_no_file()
    20 {
    21     if [ -e "$RAZOR_ROOT$1" ]; then 
    22 	echo $1: Still in filesystem >&2
    23 	exit 1
    24     fi
    25 }
    26 check_file()
    27 {
    28     ../src/razor list-files | grep -x "$1" > /dev/null
    29     if [ $? -ne 0 ]; then
    30 	echo $1: Not in database >&2
    31 	../src/razor list-files >&2
    32 	exit 1
    33     fi
    34     ../src/razor list-files "$1" | grep -x "$1" > /dev/null
    35     if [ $? -ne 0 ]; then
    36 	echo $1: Not seen by patterned list >&2
    37 	../src/razor list-files "$1" >&2
    38 	exit 1
    39     fi
    40     pkgs=`../src/razor list-file-packages "$1"`
    41     if [ -z "$pkgs" ]; then
    42 	echo $1: Not owned by any package >&2
    43 	../src/razor list-file-packages "$1"
    44 	exit 1
    45     fi
    46     for nevra in "$pkgs"; do
    47 	name=`echo $nevra | sed 's/\-.*$//'`
    48 	../src/razor list-package-files "$name" | grep -x "$1" > /dev/null
    49 	if [ $? -ne 0 ]; then
    50 	    echo $1: Not in database for package $name >&2
    51 	    ../src/razor list-package-files "$name"
    52 	    exit 1
    53 	fi
    54     done
    55     fs_check_file $1
    56 }
    57 check_no_file()
    58 {
    59     ../src/razor list-files | grep -x "$1" > /dev/null
    60     if [ $? -eq 0 ]; then
    61 	echo $1: Still in database >&2
    62 	exit 1
    63     fi
    64     fs_check_no_file $1
    65 }
    66 check_install_count()
    67 {
    68     count=`../src/razor list "$1" | wc -l`
    69     if [ "$count" != "$2" ]; then
    70 	echo $1: Install count $count, should be $2 >&2
    71 	exit 1
    72     fi
    73 }
    74 export RAZOR_ROOT=`mktemp -dt` || exit 1
    75 ../src/razor init || exit 1
    76 export YUM_URL="file://localhost/`pwd`"
    77 ../src/razor import-yum || exit 1
    78 ../src/razor install --relocate /usr=/opt zip || exit 1
    79 fs_check_file_contents /opt/bin/zip zip-1-1
    80 fs_check_file /opt/var/lib/zip/data.zap
    81 ../src/razor install --relocate /usr=/opt zip || exit 1
    82 check_install_count zip 2
    83 ../src/razor install --relocate /usr=/opt zip || exit 1
    84 check_install_count zip 3
    85 rm -rf "$RAZOR_ROOT"