Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
Enable UTF-8 2/3 byte combo string tests on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Brody committed Apr 12, 2018
1 parent 5c7c5e2 commit a6abd36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/www/spec/db-tx-string-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit a6abd36

Please sign in to comment.