This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 1a3722899f0 [fix](regression test) some cases are not supported in
cloud mode (#36268)
1a3722899f0 is described below
commit 1a3722899f082d593b4d2e5ee695a3115cf694f9
Author: Sun Chenyang <[email protected]>
AuthorDate: Sun Jun 16 09:44:57 2024 +0800
[fix](regression test) some cases are not supported in cloud mode (#36268)
---
.../test_single_compaction_with_variant_inverted_index.groovy | 3 +++
.../suites/compaction/test_single_replica_compaction.groovy | 3 +++
.../suites/fault_injection_p0/test_calc_crc_fault_injection.groovy | 3 +++
.../storage_format/test_schema_change_storage_format.groovy | 6 ++++--
4 files changed, 13 insertions(+), 2 deletions(-)
diff --git
a/regression-test/suites/compaction/test_single_compaction_with_variant_inverted_index.groovy
b/regression-test/suites/compaction/test_single_compaction_with_variant_inverted_index.groovy
index c31d7ab7c28..02b978c3659 100644
---
a/regression-test/suites/compaction/test_single_compaction_with_variant_inverted_index.groovy
+++
b/regression-test/suites/compaction/test_single_compaction_with_variant_inverted_index.groovy
@@ -18,6 +18,9 @@
import org.codehaus.groovy.runtime.IOGroovyMethods
suite("test_single_compaction_with_variant_inverted", "p2") {
+ if (isCloudMode()) {
+ return;
+ }
def tableName = "test_single_compaction_with_variant_inverted"
def set_be_config = { key, value ->
diff --git
a/regression-test/suites/compaction/test_single_replica_compaction.groovy
b/regression-test/suites/compaction/test_single_replica_compaction.groovy
index c9a9f65ee31..455aff9cf86 100644
--- a/regression-test/suites/compaction/test_single_replica_compaction.groovy
+++ b/regression-test/suites/compaction/test_single_replica_compaction.groovy
@@ -18,6 +18,9 @@
import org.codehaus.groovy.runtime.IOGroovyMethods
suite("test_single_replica_compaction", "p2") {
+ if (isCloudMode()) {
+ return;
+ }
def tableName = "test_single_replica_compaction"
def set_be_config = { key, value ->
diff --git
a/regression-test/suites/fault_injection_p0/test_calc_crc_fault_injection.groovy
b/regression-test/suites/fault_injection_p0/test_calc_crc_fault_injection.groovy
index f4971f3fe56..a02bb19c4d2 100644
---
a/regression-test/suites/fault_injection_p0/test_calc_crc_fault_injection.groovy
+++
b/regression-test/suites/fault_injection_p0/test_calc_crc_fault_injection.groovy
@@ -18,6 +18,9 @@
import org.codehaus.groovy.runtime.IOGroovyMethods
suite("test_calc_crc") {
+ if (isCloudMode()) {
+ return;
+ }
def calc_file_crc_on_tablet = { ip, port, tablet ->
return curl("GET",
String.format("http://%s:%s/api/calc_crc?tablet_id=%s", ip, port, tablet))
}
diff --git
a/regression-test/suites/inverted_index_p0/storage_format/test_schema_change_storage_format.groovy
b/regression-test/suites/inverted_index_p0/storage_format/test_schema_change_storage_format.groovy
index 0b50896c21f..a4ae74bd80a 100644
---
a/regression-test/suites/inverted_index_p0/storage_format/test_schema_change_storage_format.groovy
+++
b/regression-test/suites/inverted_index_p0/storage_format/test_schema_change_storage_format.groovy
@@ -15,8 +15,10 @@
// specific language governing permissions and limitations
// under the License.
-suite("test_schema_change_storge_format", "p0") {
-
+suite("test_local_schema_change_storge_format", "p0") {
+ if (isCloudMode()) {
+ return;
+ }
def calc_file_crc_on_tablet = { ip, port, tablet ->
return curl("GET",
String.format("http://%s:%s/api/calc_crc?tablet_id=%s", ip, port, tablet))
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]