diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-22 07:37:51 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-22 08:04:45 (GMT) |
commit | f5ea4ff7ce22f2f16f14b134908aa53c48633584 (patch) | |
tree | 0fe82188566897bd2dd23a4bcf910dcd6ff3b14f /tests/auto | |
parent | 716e0284c8f569d71e42354fd6fc3b965233e019 (diff) | |
download | Qt-f5ea4ff7ce22f2f16f14b134908aa53c48633584.zip Qt-f5ea4ff7ce22f2f16f14b134908aa53c48633584.tar.gz Qt-f5ea4ff7ce22f2f16f14b134908aa53c48633584.tar.bz2 |
Don't run host tools autotests when Qt is cross compiled.
Reviewed-by: mstormo
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/auto.pro | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index e2a67af..0638679 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -1,20 +1,22 @@ QT = core TEMPLATE = subdirs -# Directories -!wince*:SUBDIRS += \ - headers - -SUBDIRS += \ +# These tests use host tools and therefore can't work for cross-compiled Qt. +!cross_compile:SUBDIRS += \ + headers \ bic \ - collections \ compiler \ compilerwarnings \ - exceptionsafety \ linguist \ + moc \ + uic \ + uic3 + +SUBDIRS += \ + collections \ + exceptionsafety \ mediaobject \ # mediaobject_wince_ds9 \ This is Windows CE only (we test the second phonon backend ds9 here) - moc \ modeltest \ networkselftest \ q3accel \ @@ -394,8 +396,6 @@ SUBDIRS += \ selftests \ symbols \ qrand \ - uic \ - uic3 \ utf8 contains(QT_CONFIG, OdfWriter):SUBDIRS += qzip qtextodfwriter |