summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2011-11-14 13:16:12 +0100
committerQt by Nokia <qt-info@nokia.com>2011-11-14 23:42:17 +0100
commit5f17c41a25cb3a9e8a18840c3fd9042d0f18d5b3 (patch)
tree41dc173338e2b890736400c312e001f2b8c92f26
parent20f80d06f7027e8cefe288f60953109c3e333e81 (diff)
Fix config tests for modules on Mac OS X
We look for a regular binary, but Mac OS X produces application bundles by default. Instead of looking for an app bundle as well, we unify things a bit by disabling app bundles instead. Change-Id: I5eb173d98e893e616f23b91f13282cf95ef4f56a Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-rwxr-xr-xbin/qtmodule-configtests2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/qtmodule-configtests b/bin/qtmodule-configtests
index 2ea68617a9..1c65e51279 100755
--- a/bin/qtmodule-configtests
+++ b/bin/qtmodule-configtests
@@ -214,7 +214,7 @@ sub executeTest {
my $oldWorkingDir = getcwd();
my $ret = 0;
- my @QMAKEARGS = ('CONFIG-=debug_and_release');
+ my @QMAKEARGS = ('CONFIG-=debug_and_release', 'CONFIG-=app_bundle');
my $testOutDir = catdir($out_basedir, 'config.tests', $testName);