Commit dabc937f by Dane Springmeyer

disable the loadExtension test which will crash when the extension is built…

disable the loadExtension test which will crash when the extension is built against a different external sqlite version than the bundled one (which is likely)
parent 128d5352
...@@ -2,6 +2,10 @@ var sqlite3 = require('..'); ...@@ -2,6 +2,10 @@ var sqlite3 = require('..');
var assert = require('assert'); var assert = require('assert');
var exists = require('fs').existsSync || require('path').existsSync; var exists = require('fs').existsSync || require('path').existsSync;
/*
// disabled because this is not a generically safe test to run on all systems
var spatialite_ext = '/usr/local/lib/libspatialite.dylib'; var spatialite_ext = '/usr/local/lib/libspatialite.dylib';
describe('loadExtension', function(done) { describe('loadExtension', function(done) {
...@@ -18,3 +22,5 @@ describe('loadExtension', function(done) { ...@@ -18,3 +22,5 @@ describe('loadExtension', function(done) {
it('libspatialite'); it('libspatialite');
} }
}); });
*/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment