Skip to content
Snippets Groups Projects
Commit e7c51ebd authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Abi: Add unit tests for MSVC2013 detection


Change-Id: I7ab801761d88c4dde45fe1fb9f6731b65ac3d0f0
Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
parent 67a7eba6
No related branches found
No related tags found
No related merge requests found
......@@ -893,6 +893,18 @@ void ProjectExplorer::ProjectExplorerPlugin::testAbiOfBinary_data()
<< QString::fromLatin1("ppc-macos-generic-mach_o-32bit")
<< QString::fromLatin1("x86-macos-generic-mach_o-64bit"));
QTest::newRow("executable: win msvc2013 64bit")
<< QString::fromLatin1("%1/executables/x86-windows-mvsc2013-pe-64bit.exe").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msvc2013-pe-64bit"));
QTest::newRow("executable: win msvc2013 32bit")
<< QString::fromLatin1("%1/executables/x86-windows-mvsc2013-pe-32bit.exe").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msvc2013-pe-32bit"));
QTest::newRow("dynamic: win msvc2013 64bit")
<< QString::fromLatin1("%1/dynamic/x86-windows-mvsc2013-pe-64bit.dll").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msvc2013-pe-64bit"));
QTest::newRow("dynamic: win msvc2013 32bit")
<< QString::fromLatin1("%1/dynamic/x86-windows-mvsc2013-pe-32bit.dll").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msvc2013-pe-32bit"));
QTest::newRow("dynamic QtCore: win msvc2010 64bit")
<< QString::fromLatin1("%1/dynamic/win-msvc2010-64bit.dll").arg(prefix)
<< (QStringList() << QString::fromLatin1("x86-windows-msvc2010-pe-64bit"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment