From c0bdb8987cec136b22b72da00d044e57cd2fe644 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Wed, 10 Jul 2019 17:03:00 +0200 Subject: Fix "testing" for binary compatibility when the minor version is zero In that case there is nothing to test, this is the first release in a major series that _may_ break binary compatibility. Change-Id: I96cae5f3ad15c1acba87a59793c8f77cbff1c593 Reviewed-by: Alexandru Croitor Reviewed-by: Friedemann Kleint --- tests/postbuild/bic/tst_bic.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests') diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp index 61edefc9..7979d66b 100644 --- a/tests/postbuild/bic/tst_bic.cpp +++ b/tests/postbuild/bic/tst_bic.cpp @@ -448,6 +448,9 @@ void tst_Bic::sizesAndVTables_data() } } + if (minor == 0) { + QSKIP("This is the first minor release in the major series, there is no binary compatibility reference data by definition."); + } for (int i = 0, end = keys.size(); i < end; i++) { QString key = keys.at(i); -- cgit v1.2.3