Skip to content
Snippets Groups Projects
Commit a0048997 authored by Julien Malik's avatar Julien Malik
Browse files

TEST: sqlite layer names are lowercase

parent e5fd32d1
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@
#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>
#include <boost/foreach.hpp>
#include <boost/algorithm/string.hpp>
#include "itksys/SystemTools.hxx"
#include "otbOGRDataSourceWrapper.h"
......@@ -389,7 +390,7 @@ BOOST_AUTO_TEST_CASE(OGRDataSource_sqlite_overwrite)
std::string filename = workingdir + "/" + k_name + ".sqlite";
filename = itksys::SystemTools::ConvertToOutputPath(filename.c_str());
const std::string layer1 = k_name;
const std::string layer1 = boost::algorithm::to_lower_copy(k_name);
// Cannot create read data source if file does not exists
BOOST_CHECK_THROW(ogr::DataSource::New(filename, ogr::DataSource::Modes::Read),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment