diff options
Diffstat (limited to 'config.tests')
-rw-r--r-- | config.tests/symbian/audio/.gitignore | 2 | ||||
-rw-r--r-- | config.tests/symbian/audio/audio.cpp (renamed from config.tests/unix/largefile/largefiletest.cpp) | 30 | ||||
-rw-r--r-- | config.tests/symbian/audio/audio.pro | 7 | ||||
-rwxr-xr-x | config.tests/symbian/compile.test | 46 | ||||
-rw-r--r-- | config.tests/unix/largefile/largefile.pro | 3 |
5 files changed, 57 insertions, 31 deletions
diff --git a/config.tests/symbian/audio/.gitignore b/config.tests/symbian/audio/.gitignore new file mode 100644 index 0000000..87a251c --- /dev/null +++ b/config.tests/symbian/audio/.gitignore @@ -0,0 +1,2 @@ +audio.rpp +audio.rsg diff --git a/config.tests/unix/largefile/largefiletest.cpp b/config.tests/symbian/audio/audio.cpp index bf25de9..4ffc728 100644 --- a/config.tests/unix/largefile/largefiletest.cpp +++ b/config.tests/symbian/audio/audio.cpp @@ -39,35 +39,9 @@ ** ****************************************************************************/ -/* Sample program for configure to test Large File support on target -platforms. -*/ +#include <sounddevice.h> -#define _LARGEFILE_SOURCE -#define _LARGE_FILES -#define _FILE_OFFSET_BITS 64 -#include <unistd.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <assert.h> -#include <stdio.h> - -int main( int, char **argv ) +int main(int argc, char **argv) { -// check that off_t can hold 2^63 - 1 and perform basic operations... -#define OFF_T_64 (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) - if (OFF_T_64 % 2147483647 != 1) - return 1; - - // stat breaks on SCO OpenServer - struct stat buf; - stat( argv[0], &buf ); - if (!S_ISREG(buf.st_mode)) - return 2; - - FILE *file = fopen( argv[0], "r" ); - off_t offset = ftello( file ); - fseek( file, offset, SEEK_CUR ); - fclose( file ); return 0; } diff --git a/config.tests/symbian/audio/audio.pro b/config.tests/symbian/audio/audio.pro new file mode 100644 index 0000000..abbde6e --- /dev/null +++ b/config.tests/symbian/audio/audio.pro @@ -0,0 +1,7 @@ +TARGET = audio +SOURCES = audio.cpp + +INCLUDEPATH += $${EPOCROOT}epoc32/include/mmf/server +INCLUDEPATH += $${EPOCROOT}epoc32/include/mmf/common + +LIBS += -lmmfdevsound diff --git a/config.tests/symbian/compile.test b/config.tests/symbian/compile.test new file mode 100755 index 0000000..20a3039 --- /dev/null +++ b/config.tests/symbian/compile.test @@ -0,0 +1,46 @@ +#!/bin/sh + +SUCCESS=no +QMKSPEC=$1 +XPLATFORM=`basename "$1"` +QMAKE_CONFIG=$2 +VERBOSE=$3 +SRCDIR=$4 +OUTDIR=$5 +TEST=$6 +EXE=`basename "$6"` +DESCRIPTION=$7 +shift 7 +LFLAGS="" +INCLUDEPATH="" +CXXFLAGS="" +MAC_ARCH_CXXFLAGS="" +MAC_ARCH_LFLAGS="" + +# debuggery +[ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION auto-detection... ($*)" + +test -d "$OUTDIR/$TEST" || mkdir -p "$OUTDIR/$TEST" + +cd "$OUTDIR/$TEST" + +test -r Makefile && $MAKE distclean >/dev/null 2>&1 + +"$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "CONFIG+=$QMAKE_CONFIG" "LIBS*=$LFLAGS" "LIBS+=$MAC_ARCH_LFLAGS" "INCLUDEPATH*=$INCLUDEPATH" "QMAKE_CXXFLAGS*=$CXXFLAGS" "QMAKE_CXXFLAGS+=$MAC_ARCH_CXXFLAGS" "$SRCDIR/$TEST/$EXE.pro" -o "$OUTDIR/$TEST/Makefile" + +if [ "$VERBOSE" = "yes" ]; then + $MAKE +else + $MAKE >/dev/null 2>&1 +fi + +[ -x "$EXE.exe" ] && SUCCESS=yes + +# done +if [ "$SUCCESS" != "yes" ]; then + [ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION disabled." + exit 1 +else + [ "$VERBOSE" = "yes" ] && echo "$DESCRIPTION enabled." + exit 0 +fi diff --git a/config.tests/unix/largefile/largefile.pro b/config.tests/unix/largefile/largefile.pro deleted file mode 100644 index d7affc6..0000000 --- a/config.tests/unix/largefile/largefile.pro +++ /dev/null @@ -1,3 +0,0 @@ -SOURCES=largefiletest.cpp -CONFIG-=qt dylib -mac:CONFIG -= app_bundle |