From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- config.tests/unix/largefile.test | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 config.tests/unix/largefile.test (limited to 'config.tests/unix/largefile.test') diff --git a/config.tests/unix/largefile.test b/config.tests/unix/largefile.test new file mode 100755 index 000000000..f8cde7314 --- /dev/null +++ b/config.tests/unix/largefile.test @@ -0,0 +1,31 @@ +#!/bin/sh + +LARGEFILE=0 +QMKSPEC=$1 +VERBOSE=$2 +SRCDIR=$3 +OUTDIR=$4 + +# debuggery +[ "$VERBOSE" = "yes" ] && echo "Testing Large File support... ($*)" + +# build and run a test program +test -d $OUTDIR/config.tests/unix/largefile || mkdir -p $OUTDIR/config.tests/unix/largefile +$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/largefile/largefiletest.pro -o $OUTDIR/config.tests/unix/largefile/Makefile >/dev/null 2>&1 +cd $OUTDIR/config.tests/unix/largefile + +if [ "$VERBOSE" = "yes" ]; then + (make && ./largefiletest) +else + (make && ./largefiletest) >/dev/null 2>&1 +fi +LARGEFILE=$? + +# done +if [ "$LARGEFILE" -ne 0 ]; then + [ "$VERBOSE" = "yes" ] && echo "Large File support disabled." + exit 0 +else + [ "$VERBOSE" = "yes" ] && echo "Large File support enabled." + exit 1 +fi -- cgit v1.2.1