Skip to content

Commit 8a6e88d

Browse files
etienneskyjef-n
authored andcommitted
skip vrt-in-zip test for gdal<1.7
1 parent 56d0387 commit 8a6e88d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/src/core/testziplayer.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ void TestZipLayer::testPassthruVectorGzip()
283283
{
284284
QSettings settings;
285285
#if GDAL_VERSION_NUM < 1700
286-
QSKIP( "This test requires GDAL > 1.7", SkipSingle );
286+
QSKIP( "This test requires GDAL >= 1.7", SkipSingle );
287287
#endif
288288
for ( int i = 1 ; i <= mMaxScanZipSetting ; i++ )
289289
{
@@ -406,6 +406,9 @@ void TestZipLayer::testZipItemSubfolder()
406406

407407
void TestZipLayer::testZipItemVRT()
408408
{
409+
#if GDAL_VERSION_NUM < 1700
410+
QSKIP( "This test requires GDAL > 1.7", SkipSingle );
411+
#endif
409412
QSettings settings;
410413
for ( int i = 2 ; i <= mMaxScanZipSetting ; i++ )
411414
{

0 commit comments

Comments
 (0)