tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
duckdb: disable tests that fail on x86_64 && aarch64
Phillip Cloud
1 year ago
0b60c7a3
c29cfefd
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
duckdb
default.nix
+4
pkgs/development/libraries/duckdb/default.nix
···
97
97
"test/sql/attach/attach_remote.test"
98
98
"test/sql/copy/csv/test_sniff_httpfs.test"
99
99
"test/sql/httpfs/internal_issue_2490.test"
100
100
+
# fails with incorrect result
101
101
+
# Upstream issue https://github.com/duckdb/duckdb/issues/14294
102
102
+
"test/sql/copy/file_size_bytes.test"
100
103
] ++ lib.optionals stdenv.hostPlatform.isAarch64 [
101
104
"test/sql/aggregate/aggregates/test_kurtosis.test"
102
105
"test/sql/aggregate/aggregates/test_skewness.test"
103
106
"test/sql/function/list/aggregates/skewness.test"
107
107
+
"test/sql/aggregate/aggregates/histogram_table_function.test"
104
108
]);
105
109
LD_LIBRARY_PATH = lib.optionalString stdenv.hostPlatform.isDarwin "DY" + "LD_LIBRARY_PATH";
106
110
in