forked from mirrors/nixpkgs
duckdb: skip kurtosis and skewness tests on aarch64
This commit is contained in:
parent
72698b35ce
commit
2b88803ac9
|
@ -49,19 +49,28 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
||||||
installCheckPhase = ''
|
installCheckPhase =
|
||||||
runHook preInstallCheck
|
let
|
||||||
|
excludes = map (pattern: "exclude:'${pattern}'") [
|
||||||
|
"*test_slow"
|
||||||
|
"Test file buffers for reading/writing to file"
|
||||||
|
"[test_slow]"
|
||||||
|
"test/common/test_cast_hugeint.test"
|
||||||
|
"test/sql/copy/csv/test_csv_remote.test"
|
||||||
|
"test/sql/copy/parquet/test_parquet_remote.test"
|
||||||
|
] ++ lib.optionals stdenv.isAarch64 [
|
||||||
|
"test/sql/aggregate/aggregates/test_kurtosis.test"
|
||||||
|
"test/sql/aggregate/aggregates/test_skewness.test"
|
||||||
|
"test/sql/function/list/aggregates/skewness.test"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
''
|
||||||
|
runHook preInstallCheck
|
||||||
|
|
||||||
$PWD/test/unittest \
|
$PWD/test/unittest ${toString excludes}
|
||||||
'exclude:[test_slow]' \
|
|
||||||
'exclude:*test_slow' \
|
|
||||||
exclude:test/sql/copy/csv/test_csv_remote.test \
|
|
||||||
exclude:test/sql/copy/parquet/test_parquet_remote.test \
|
|
||||||
exclude:test/common/test_cast_hugeint.test \
|
|
||||||
exclude:'Test file buffers for reading/writing to file'
|
|
||||||
|
|
||||||
runHook postInstallCheck
|
runHook postInstallCheck
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ninja ];
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
buildInputs = lib.optionals withHttpFs [ openssl ]
|
buildInputs = lib.optionals withHttpFs [ openssl ]
|
||||||
|
|
Loading…
Reference in a new issue