Revert "Merge pull request #38212 from azat/no-stress"

This reverts commit 24d5be1669, reversing
changes made to a756b4be27.

After #38717 there is no need in --no-stress, since there will be no
such checks for previous releases that fails.

Reverts: #38212
Requires: #38717
This commit is contained in:
Azat Khuzhin 2023-02-15 22:10:16 +01:00
parent 3e77463125
commit bddead1ea2
3 changed files with 1 additions and 16 deletions

View File

@ -294,7 +294,6 @@ if __name__ == "__main__":
# Use system database to avoid CREATE/DROP DATABASE queries
"--database=system",
"--hung-check",
"--stress",
"--report-logs-stats",
"00001_select_1",
]

View File

@ -449,7 +449,6 @@ class FailureReason(enum.Enum):
NO_LONG = "not running long tests"
REPLICATED_DB = "replicated-database"
S3_STORAGE = "s3-storage"
STRESS = "stress"
BUILD = "not running for current build"
BACKWARD_INCOMPATIBLE = "test is backward incompatible"
NO_PARALLEL_REPLICAS = "smth in not supported with parallel replicas"
@ -861,9 +860,6 @@ class TestCase:
elif tags and ("no-s3-storage" in tags) and args.s3_storage:
return FailureReason.S3_STORAGE
elif tags and ("no-stress" in tags) and args.stress:
return FailureReason.STRESS
elif tags:
for build_flag in args.build_flags:
if "no-" + build_flag in tags:
@ -2417,12 +2413,6 @@ if __name__ == "__main__":
default=False,
help="Run tests over s3 storage",
)
parser.add_argument(
"--stress",
action="store_true",
default=False,
help="Run stress tests",
)
parser.add_argument(
"--no-random-settings",
action="store_true",

View File

@ -1,9 +1,5 @@
-- Tags: replica, no-tsan, no-parallel, no-stress
-- Tags: replica, no-tsan, no-parallel
-- Tag no-tsan: RESTART REPLICAS can acquire too much locks, while only 64 is possible from one thread under TSan
-- Tag no-stress: RESTART REPLICAS can leave some tables,
-- that may pollute error log,
-- like in 01414_mutations_and_errors_zookeeper.
-- no-stress is like worked no-parallel for stress testing
DROP TABLE IF EXISTS data_01646;
CREATE TABLE data_01646 (x Date, s String) ENGINE = ReplicatedMergeTree('/clickhouse/tables/{database}/test_01646/data_01646', 'r') ORDER BY s PARTITION BY x;