summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/config.tests/unix/largefile.test
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/config.tests/unix/largefile.test')
-rwxr-xr-xtqtinterface/qt4/config.tests/unix/largefile.test31
1 files changed, 0 insertions, 31 deletions
diff --git a/tqtinterface/qt4/config.tests/unix/largefile.test b/tqtinterface/qt4/config.tests/unix/largefile.test
deleted file mode 100755
index f8cde73..0000000
--- a/tqtinterface/qt4/config.tests/unix/largefile.test
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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