Skip to content

Commit 97b33aa

Browse files
authored
duckdb: disable tests that fail on x86_64 && aarch64 (#347071)
2 parents 12a7808 + 0b60c7a commit 97b33aa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkgs/development/libraries/duckdb/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,14 @@ stdenv.mkDerivation (finalAttrs: {
9797
"test/sql/attach/attach_remote.test"
9898
"test/sql/copy/csv/test_sniff_httpfs.test"
9999
"test/sql/httpfs/internal_issue_2490.test"
100+
# fails with incorrect result
101+
# Upstream issue https://github.com/duckdb/duckdb/issues/14294
102+
"test/sql/copy/file_size_bytes.test"
100103
] ++ lib.optionals stdenv.hostPlatform.isAarch64 [
101104
"test/sql/aggregate/aggregates/test_kurtosis.test"
102105
"test/sql/aggregate/aggregates/test_skewness.test"
103106
"test/sql/function/list/aggregates/skewness.test"
107+
"test/sql/aggregate/aggregates/histogram_table_function.test"
104108
]);
105109
LD_LIBRARY_PATH = lib.optionalString stdenv.hostPlatform.isDarwin "DY" + "LD_LIBRARY_PATH";
106110
in

0 commit comments

Comments
 (0)