Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

duckdb: disable tests that fail on x86_64 && aarch64

+4
+4
pkgs/development/libraries/duckdb/default.nix
··· 97 "test/sql/attach/attach_remote.test" 98 "test/sql/copy/csv/test_sniff_httpfs.test" 99 "test/sql/httpfs/internal_issue_2490.test" 100 ] ++ lib.optionals stdenv.hostPlatform.isAarch64 [ 101 "test/sql/aggregate/aggregates/test_kurtosis.test" 102 "test/sql/aggregate/aggregates/test_skewness.test" 103 "test/sql/function/list/aggregates/skewness.test" 104 ]); 105 LD_LIBRARY_PATH = lib.optionalString stdenv.hostPlatform.isDarwin "DY" + "LD_LIBRARY_PATH"; 106 in
··· 97 "test/sql/attach/attach_remote.test" 98 "test/sql/copy/csv/test_sniff_httpfs.test" 99 "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" 103 ] ++ lib.optionals stdenv.hostPlatform.isAarch64 [ 104 "test/sql/aggregate/aggregates/test_kurtosis.test" 105 "test/sql/aggregate/aggregates/test_skewness.test" 106 "test/sql/function/list/aggregates/skewness.test" 107 + "test/sql/aggregate/aggregates/histogram_table_function.test" 108 ]); 109 LD_LIBRARY_PATH = lib.optionalString stdenv.hostPlatform.isDarwin "DY" + "LD_LIBRARY_PATH"; 110 in