From ae11fbda0ddd1ba827bb511fecd1491db500a633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20=C3=96zkural?= Date: Thu, 18 Aug 2005 13:04:12 +0000 Subject: [PATCH] * remote repo'lari test etmeye baslayalim --- tests/beta-remoterepo.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 tests/beta-remoterepo.sh diff --git a/tests/beta-remoterepo.sh b/tests/beta-remoterepo.sh new file mode 100755 index 00000000..da6d03a8 --- /dev/null +++ b/tests/beta-remoterepo.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +export $PATH=$PATH:. +set -x # xtrace +set -e # errexit + +echo "beta functionality test script for testing remote repos" +echo "working directory:" `pwd` +echo "cleaning destination dir: tmp" +rm -rf tmp +#echo "*** repository tests" +pisi-cli add-repo pardus ftp://ftp.uludag.org.tr/pub/pisi/binary/system/base/pisi-index.xml +pisi-cli update-repo pardus +pisi-cli list-repo + +#echo "*** package ops" +pisi-cli list-available +pisi-cli info python +pisi-cli install python + +echo "*** database contents" +for x in `find tmp -iname '*.bdb'`; do + echo "contents of database " $x; + tools/cat-db.py $x; +done