diff options
| -rw-r--r-- | sources/shiboken6/ApiExtractor/tests/testextrainclude.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/tests/testextrainclude.cpp b/sources/shiboken6/ApiExtractor/tests/testextrainclude.cpp index bee75e54e..f6b8b7286 100644 --- a/sources/shiboken6/ApiExtractor/tests/testextrainclude.cpp +++ b/sources/shiboken6/ApiExtractor/tests/testextrainclude.cpp @@ -84,10 +84,16 @@ void TestExtraInclude::testParseTriplet_data() QTest::newRow("Linux") << QString("x86_64-unknown-linux-gnu"_L1) - << true << Architecture::X64 << Platform::Linux << true << Compiler::Gpp + << true << Architecture::X64 << Platform::Linux << false << Compiler::Gpp << false << QVersionNumber{} << "x86_64-unknown-linux-gnu"_ba; + QTest::newRow("Poky Linux") + << QString("aarch64-poky-linux"_L1) + << true << Architecture::Arm64<< Platform::Linux << false << Compiler::Gpp + << false << QVersionNumber{} + << "arm64-unknown-linux"_ba; + QTest::newRow("WindowsArm") << QString("aarch64-pc-windows-msvc19.39.0"_L1) << true << Architecture::Arm64 << Platform::Windows << true << Compiler::Msvc |
