Skip to content

Commit

Permalink
2008-07-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Browse files Browse the repository at this point in the history
	Added a test for libz. Quoted where it is necessary.
	* build_test.sh
  • Loading branch information
tatsuhiro-t committed Jul 22, 2008
1 parent 3e4b748 commit bf1f564
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2008-07-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Added a test for libz. Quoted where it is necessary.
* build_test.sh

2008-07-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Added GZip to `Enabled Features' list.
Expand Down
21 changes: 12 additions & 9 deletions build_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
exec 2>&1

BUILD_TEST_DIR=/tmp/aria2_build_test
LOG=build_test.log

if [ ! -d $BUILD_TEST_DIR ]; then
mkdir $BUILD_TEST_DIR || echo "Failed to create directory $BUILD_TEST_DIR" \
if [ ! -d "$BUILD_TEST_DIR" ]; then
mkdir "$BUILD_TEST_DIR" \
|| echo "Failed to create directory $BUILD_TEST_DIR" \
&& exit -1
fi

Expand All @@ -19,20 +19,21 @@ build()
echo -n "new build() started at "
echo `date`
echo "*** configure opts=$1"
BIN_NAME=aria2c_$2
if [ -f $BUILD_TEST_DIR/$BIN_NAME ]; then
BIN_NAME="aria2c_$2"
if [ -f "$BUILD_TEST_DIR/$BIN_NAME" ]; then
echo "$BIN_NAME exists, skipping"
return
fi
./configure $1 && make -j2 check && \
cp src/aria2c $BUILD_TEST_DIR/aria2c_$2 && \
cp config.log $BUILD_TEST_DIR/config.log_$2
./configure $1 \
&& cp config.log "$BUILD_TEST_DIR/config.log_$2" \
&& LANG=C make -j2 check > "$BUILD_TEST_DIR/aria2c_$2.log" \
&& cp src/aria2c "$BUILD_TEST_DIR/aria2c_$2"
}

clear()
{
for file in `ls $BUILD_TEST_DIR`; do
rm -f $BUILD_TEST_DIR/$file;
rm -f "$BUILD_TEST_DIR/$file";
done
}

Expand All @@ -41,11 +42,13 @@ case "$1" in
clear
;;
*)
# Library combinations
build "--without-gnutls" "openssl"
build "--without-gnutls --without-openssl" "nossl"
build "--without-libcares" "nocares"
build "--without-libxml2" "nolibxml2"
build "--without-libxml2 --without-libexpat" "noxml"
build "--without-libz" "nozlib"
# Feature combinations
build "--disable-bittorrent" "nobt"
build "--disable-metalink" "noml"
Expand Down

0 comments on commit bf1f564

Please sign in to comment.