From: tangkaiyuan Date: Wed, 28 Sep 2022 03:40:59 +0000 (+0800) Subject: [common][filesystem][DPTTIZEN-3242 skip InvalidValues test when arch is armv8] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b35905f35588cbb8ea0a5b7af40964b2bd39b254;p=test%2Ftct%2Fweb%2Fapi.git [common][filesystem][DPTTIZEN-3242 skip InvalidValues test when arch is armv8] Change-Id: Ib15b9ed0ae0bcb08f873de83cbb78586af75ca91 Signed-off-by: tangkaiyuan --- diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlobNonBlocking_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlobNonBlocking_InvalidValuesError.html index 266d7104b..7a7eb8b4f 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlobNonBlocking_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlobNonBlocking_InvalidValuesError.html @@ -42,7 +42,7 @@ var t = async_test(document.title), writeBlobNonBlockingSuccess, writeBlobNonBlo t.step(function () { arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { add_result_callback(function () { try { tizen.filesystem.deleteFile("documents/file"); diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlob_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlob_InvalidValuesError.html index bd168732a..8734a96fe 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlob_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readBlob_InvalidValuesError.html @@ -37,7 +37,7 @@ Authors: test(function () { var arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { var fileHandleWrite, blob, fileHandleRead, content = "Lorem ipsum dolor sit amet..."; add_result_callback(function () { diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readDataNonBlocking_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readDataNonBlocking_InvalidValuesError.html index 95a886a7f..7bfcb6940 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readDataNonBlocking_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readDataNonBlocking_InvalidValuesError.html @@ -40,7 +40,7 @@ var t = async_test(document.title), dataToWrite = new Uint8Array([11, 21, 31, 71 t.step(function () { arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { add_result_callback(function () { try { tizen.filesystem.deleteFile("documents/file"); diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readData_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readData_InvalidValuesError.html index b300a82a5..699600876 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readData_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readData_InvalidValuesError.html @@ -37,7 +37,7 @@ Authors: test(function () { var arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { var dataToWrite = new Uint8Array([11, 21, 31, 71, 81, 91]), fileHandleWrite, fileHandleRead; add_result_callback(function () { diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readStringNonBlocking_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readStringNonBlocking_InvalidValuesError.html index 966f24026..925096b79 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readStringNonBlocking_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readStringNonBlocking_InvalidValuesError.html @@ -40,7 +40,7 @@ var t = async_test(document.title), readStringNonBlockingSuccess, readStringNonB t.step(function () { arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { add_result_callback(function () { try { fileHandle.close(); diff --git a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readString_InvalidValuesError.html b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readString_InvalidValuesError.html index 0b7c74b9e..d0dabc10f 100755 --- a/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readString_InvalidValuesError.html +++ b/common/tct-filesystem-tizen-tests/filesystem/FileHandle_readString_InvalidValuesError.html @@ -37,7 +37,7 @@ Authors: test(function () { var arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); - if (arch !== "aarch64") { + if (arch !== "aarch64" && arch !== "armv8") { var fileHandleWrite, fileHandleRead, fileContents, content = "Lorem ipsum dolor sit amet..."; add_result_callback(function () {