From a6abd36e10f2e475271dfffce16d71fdd1f35fac Mon Sep 17 00:00:00 2001 From: "Christopher J. Brody" Date: Wed, 11 Apr 2018 20:09:16 -0400 Subject: [PATCH] Enable UTF-8 2/3 byte combo string tests on Android ref: - litehelpers/Cordova-sqlite-evcore-extbuild-free#19 - litehelpers/Android-sqlite-evcore-native-driver-free#1 - litehelpers/Android-sqlite-evcore-native-driver-free#2 --- spec/www/spec/db-tx-string-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/www/spec/db-tx-string-test.js b/spec/www/spec/db-tx-string-test.js index 91fbd54..b90a4a0 100755 --- a/spec/www/spec/db-tx-string-test.js +++ b/spec/www/spec/db-tx-string-test.js @@ -1002,8 +1002,8 @@ var mytests = function() { }, MYTIMEOUT); it(suiteName + 'Inline string manipulation test with UTF-8 2/3 octet characters', function(done) { + // ref: litehelpers/Cordova-sqlite-evcore-extbuild-free#19 if (isWP8) pending('SKIP for WP(8)'); - if (isAndroid && !isWebSql && !isImpl2) pending('XXX SKIP: BUG on Android (default Android-sqlite-evcore-native-driver access implementation)'); // XXX ref: litehelpers/Cordova-sqlite-evcore-extbuild-free#19 var db = openDatabase("Inline-UTF8-string-manipulation-test.db", "1.0", "Demo", DEFAULT_SIZE); @@ -1031,8 +1031,8 @@ var mytests = function() { }, MYTIMEOUT); it(suiteName + 'string parameter manipulation test with UTF-8 2/3 octet characters', function(done) { + // ref: litehelpers/Cordova-sqlite-evcore-extbuild-free#19 if (isWP8) pending('SKIP for WP(8)'); - if (isAndroid && !isWebSql && !isImpl2) pending('XXX SKIP: BUG on Android (default Android-sqlite-evcore-native-driver access implementation)'); // XXX ref: litehelpers/Cordova-sqlite-evcore-extbuild-free#19 var db = openDatabase("UTF8-string-parameter-manipulation-test.db", "1.0", "Demo", DEFAULT_SIZE);