mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Revert "Merge pull request #38212 from azat/no-stress"
This reverts commit24d5be1669
, reversing changes made toa756b4be27
. 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:
parent
3e77463125
commit
bddead1ea2
@ -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",
|
||||
]
|
||||
|
@ -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",
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user