test/details.sh
author J. Ali Harlow <ali@juiblex.co.uk>
Wed Feb 01 12:47:50 2012 +0000 (2012-02-01)
changeset 411 b1dcf22c0418
child 456 bae5adee8c8c
permissions -rwxr-xr-x
Fix bug causing writes to an unallocated buffer
     1 #!/bin/sh
     2 export RAZOR_ROOT=`mktemp -dt` || exit 1
     3 ../src/razor init || exit 1
     4 export YUM_URL="file://localhost/`pwd`"
     5 ../src/razor import-yum || exit 1
     6 ../src/razor install zsh2 || exit 1
     7 ../src/razor info zsh2 > details.out || exit 1
     8 diff -u $srcdir/details.ref details.out || exit 1
     9 rm -rf "$RAZOR_ROOT"