Skip to content

Commit

Permalink
update xfails
Browse files Browse the repository at this point in the history
  • Loading branch information
alsugiliazova committed Jan 13, 2024
1 parent 070608f commit 37b907b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion aggregate_functions/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from helpers.tables import *
from helpers.argparser import argparser
from helpers.cluster import create_cluster
from helpers.common import check_clickhouse_version
from helpers.common import check_clickhouse_version, check_current_cpu

from aggregate_functions.tests.steps import aggregate_functions, window_functions
from aggregate_functions.requirements import SRS_031_ClickHouse_Aggregate_Functions
Expand Down Expand Up @@ -115,6 +115,12 @@
"/aggregate functions/sumMapFilteredWithOverflow/inf, -inf, nan/*": [
(Fail, issue_58741, check_clickhouse_version(">=23.11"))
],
"/aggregate functions/simpleLinearRegression/*": [
(Fail, "need to investigate on aarch", check_clickhouse_version(">=23.11") and check_current_cpu("aarch64"))
],
"/aggregate functions/:/simpleLinearRegression*/*": [
(Fail, "need to investigate on aarch", check_clickhouse_version(">=23.11") and check_current_cpu("aarch64"))
],
}

ffails = {
Expand Down Expand Up @@ -323,6 +329,11 @@
issue_58727,
check_clickhouse_version(">=23.11"),
),
"/aggregate functions/:/aggThrow*/with group by/*": (
Skip,
issue_58727,
check_clickhouse_version(">=23.11"),
),
"/aggregate functions/*/sumMapFiltered*/inf, -inf, nan/*":
(Skip, issue_58741, check_clickhouse_version(">=23.11"))
,
Expand Down

0 comments on commit 37b907b

Please sign in to comment.