Skip to content

Commit 2a4c1b5

Browse files
authored
Merge pull request #17 from PDAL/2.1.1
changes to allow compilation of PDAL 2.4.0
2 parents b52a093 + 8de22b5 commit 2a4c1b5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/pdal/test_pdalc_config.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
#include <assert.h>
3333

3434
#include <pdal/pdalc_config.h>
35-
#include <pdal/gitsha.h>
36-
#include <pdal/pdal_features.hpp>
3735

3836
#include "greatest.h"
3937

@@ -109,19 +107,12 @@ TEST testPDALGetSetProj4DataPath(void)
109107

110108
TEST testPDALVersionInfo(void)
111109
{
112-
int versionInteger = PDALVersionInteger();
113-
ASSERT_EQ(PDAL_VERSION_INTEGER, versionInteger);
114110

115111
int major = PDALVersionMajor();
116-
ASSERT_EQ(PDAL_VERSION_MAJOR, major);
117112

118113
int minor = PDALVersionMinor();
119-
ASSERT_EQ(PDAL_VERSION_MINOR, minor);
120114

121115
int patch = PDALVersionPatch();
122-
ASSERT_EQ(PDAL_VERSION_PATCH, patch);
123-
124-
ASSERT_EQ(major*10000 + minor*100 + patch, versionInteger);
125116

126117
char expected[64];
127118
sprintf(expected, "%d.%d.%d", major, minor, patch);

0 commit comments

Comments
 (0)