Skip to content

Commit

Permalink
skip vrt-in-zip test for gdal<1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennesky authored and jef-n committed May 30, 2012
1 parent 56d0387 commit 8a6e88d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/src/core/testziplayer.cpp
Expand Up @@ -283,7 +283,7 @@ void TestZipLayer::testPassthruVectorGzip()
{
QSettings settings;
#if GDAL_VERSION_NUM < 1700
QSKIP( "This test requires GDAL > 1.7", SkipSingle );
QSKIP( "This test requires GDAL >= 1.7", SkipSingle );
#endif
for ( int i = 1 ; i <= mMaxScanZipSetting ; i++ )
{
Expand Down Expand Up @@ -406,6 +406,9 @@ void TestZipLayer::testZipItemSubfolder()

void TestZipLayer::testZipItemVRT()
{
#if GDAL_VERSION_NUM < 1700
QSKIP( "This test requires GDAL > 1.7", SkipSingle );
#endif
QSettings settings;
for ( int i = 2 ; i <= mMaxScanZipSetting ; i++ )
{
Expand Down

0 comments on commit 8a6e88d

Please sign in to comment.