summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/ptrsize.test
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
committerTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
commitd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch)
tree6e3dcca4f77e20ec8966c666aac7c35bd4704053 /config.tests/unix/ptrsize.test
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'config.tests/unix/ptrsize.test')
-rwxr-xr-xconfig.tests/unix/ptrsize.test26
1 files changed, 26 insertions, 0 deletions
diff --git a/config.tests/unix/ptrsize.test b/config.tests/unix/ptrsize.test
new file mode 100755
index 000000000..0d0337d30
--- /dev/null
+++ b/config.tests/unix/ptrsize.test
@@ -0,0 +1,26 @@
+#/bin/sh
+
+LARGEFILE=0
+QMKSPEC=$1
+VERBOSE=$2
+SRCDIR=$3
+OUTDIR=$4
+
+# debuggery
+[ "$VERBOSE" = "yes" ] && echo "Testing size of pointers ... ($*)"
+
+# build and run a test program
+test -d $OUTDIR/config.tests/unix/ptrsize || mkdir -p $OUTDIR/config.tests/unix/ptrsize
+$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/ptrsize/ptrsizetest.pro -o $OUTDIR/config.tests/unix/ptrsize/Makefile >/dev/null 2>&1
+cd $OUTDIR/config.tests/unix/ptrsize
+
+if [ "$VERBOSE" = "yes" ]; then
+ (make clean && make && ./ptrsizetest)
+else
+ (make clean && make && ./ptrsizetest) >/dev/null 2>&1
+fi
+PTRSIZE=$?
+
+# done
+[ "$VERBOSE" = "yes" ] && echo "Pointersize: $PTRSIZE"
+exit $PTRSIZE