From a1a557bd4345cc2e490f7f56b5f9403248732ebd Mon Sep 17 00:00:00 2001 From: Rob <86313040+robert-manchester@users.noreply.github.com> Date: Sun, 1 Oct 2023 18:17:34 -0700 Subject: [PATCH] restore the original set of unittest excludes and add "Test using a remote optimizer pass in case thats important to someone" --- pkgs/development/libraries/duckdb/default.nix | 41 ++++++++++++------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/duckdb/default.nix b/pkgs/development/libraries/duckdb/default.nix index 96fd06754b97..d4e50143942d 100644 --- a/pkgs/development/libraries/duckdb/default.nix +++ b/pkgs/development/libraries/duckdb/default.nix @@ -55,26 +55,39 @@ stdenv.mkDerivation rec { installCheckPhase = let excludes = map (pattern: "exclude:'${pattern}'") [ - "test/fuzzer/pedro/buffer_manager_out_of_memory.test" - "test/sql/copy/csv/parallel/csv_parallel_httpfs.test" - "test/sql/copy/csv/parallel/test_parallel_csv.test" - "test/sql/copy/csv/test_csv_httpfs_prepared.test" - "test/sql/copy/csv/test_csv_httpfs.test" + "[s3]" + "Test closing database during long running query" + "Test using a remote optimizer pass in case thats important to someone" + "test/common/test_cast_hugeint.test" "test/sql/copy/csv/test_csv_remote.test" - "test/sql/copy/parquet/delta_byte_array_length_mismatch.test" - "test/sql/copy/parquet/delta_byte_array_multiple_pages.test" + "test/sql/copy/parquet/test_parquet_remote.test" + "test/sql/copy/parquet/test_parquet_remote_foreign_files.test" + "test/sql/storage/compression/chimp/chimp_read.test" + "test/sql/storage/compression/chimp/chimp_read_float.test" + "test/sql/storage/compression/patas/patas_compression_ratio.test_coverage" + "test/sql/storage/compression/patas/patas_read.test" + "test/sql/json/read_json_objects.test" + "test/sql/json/read_json.test" "test/sql/copy/parquet/parquet_5968.test" + "test/fuzzer/pedro/buffer_manager_out_of_memory.test" + "test/sql/storage/compression/bitpacking/bitpacking_size_calculation.test" + "test/sql/copy/parquet/delta_byte_array_length_mismatch.test" + "test/sql/function/timestamp/test_icu_strptime.test" + "test/sql/timezone/test_icu_timezone.test" "test/sql/copy/parquet/snowflake_lineitem.test" "test/sql/copy/parquet/test_parquet_force_download.test" - "test/sql/copy/parquet/test_parquet_remote_foreign_files.test" - "test/sql/copy/parquet/test_parquet_remote.test" - "test/sql/json/table/read_json_objects.test" - "test/sql/json/table/read_json.test" - "test/sql/settings/test_disabled_file_system_httpfs.test" - "test/sql/storage/compression/bitpacking/bitpacking_size_calculation.test" - + "test/sql/copy/parquet/delta_byte_array_multiple_pages.test" + "test/sql/copy/csv/test_csv_httpfs_prepared.test" + "test/sql/copy/csv/test_csv_httpfs.test" + "test/sql/copy/csv/parallel/test_parallel_csv.test" + "test/sql/copy/csv/parallel/csv_parallel_httpfs.test" + "test/common/test_cast_struct.test" + # test is order sensitive + "test/sql/copy/parquet/parquet_glob.test" # these are only hidden if no filters are passed in "[!hide]" + # this test apparently never terminates + "test/sql/copy/csv/auto/test_csv_auto.test" ] ++ lib.optionals stdenv.isAarch64 [ "test/sql/aggregate/aggregates/test_kurtosis.test" "test/sql/aggregate/aggregates/test_skewness.test"