Unverified Commit f7cf7964 authored by Yt's avatar Yt Committed by GitHub
Browse files

vector: Disable some flakey aarch64 tests (#486554)

parents 465e151f 46947ed1
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -121,6 +121,17 @@ rustPlatform.buildRustPackage (finalAttrs: {
    "--skip=sources::socket::test::multicast_udp_message"
    "--skip=sources::socket::test::multiple_multicast_addresses_udp_message"
    "--skip=sources::syslog::test::test_udp_syslog"

  ]
  ++ lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin) [
    # Fails on aarch64-darwin (https://github.com/vectordotdev/vector/issues/23813)
    "--skip=sources::file::tests::file_start_position_server_restart_unfinalized"
  ]
  ++ lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) [
    # Flakey on aarch64-linux
    "--skip=topology::test::backpressure::buffer_drop_fan_out"
    "--skip=topology::test::backpressure::default_fan_out"
    "--skip=topology::test::backpressure::serial_backpressure"
  ];

  postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''