summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/abi.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-03-23 15:25:38 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2011-03-24 15:44:23 +0100
commit6ad7df694006dceaeaca474e3fa0c710179dbc88 (patch)
treee25dceaf29860ce2f0a76f7ca4654c44c6d6e22b /src/plugins/projectexplorer/abi.cpp
parent8b4d6ea8bb7d5baa9ef1944b36c1bff0e31c2df9 (diff)
downloadqt-creator-6ad7df694006dceaeaca474e3fa0c710179dbc88.tar.gz
Abi: Add unit test for arm linux libraries
Reviewed-by: dt
Diffstat (limited to 'src/plugins/projectexplorer/abi.cpp')
-rw-r--r--src/plugins/projectexplorer/abi.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp
index dc4dfda681..e193bdad90 100644
--- a/src/plugins/projectexplorer/abi.cpp
+++ b/src/plugins/projectexplorer/abi.cpp
@@ -637,12 +637,14 @@ void ProjectExplorer::ProjectExplorerPlugin::testAbiOfBinary_data()
QTest::newRow("dynamic QtCore: win msys 32bit")
<< QString::fromLatin1("%1/abi/dynamic/win-mingw-32bit.dll").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msys-pe-32bit"));
- QTest::newRow("static stdc++: mac fat")
+ QTest::newRow("dynamic stdc++: mac fat")
<< QString::fromLatin1("%1/abi/dynamic/mac-fat.dylib").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-macos-generic-mach_o-32bit")
<< QString::fromLatin1("ppc-macos-generic-mach_o-32bit")
<< QString::fromLatin1("x86-macos-generic-mach_o-64bit"));
-
+ QTest::newRow("dynamic QtCore: arm linux 32bit")
+ << QString::fromLatin1("%1/abi/dynamic/arm-linux.so").arg(prefix)
+ << (QStringList() << QString::fromLatin1("arm-linux-generic-elf-32bit"));
}
void ProjectExplorer::ProjectExplorerPlugin::testAbiOfBinary()