Unverified Commit 98c1b23f authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

bmake: avoid a bad test on darwin

https://hydra.nixos.org/build/309555861/nixlog/2/tail
Feel free to do deeper investigation and/or better fix.
parent 8a358541
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -57,13 +57,17 @@ stdenv.mkDerivation (finalAttrs: {
  # * directive-export{,-gmake}: another failure related to TZ variables
  # * opt-keep-going-indirect: not yet known
  # * varmod-localtime: musl doesn't support TZDIR and this test relies on impure, implicit paths
  env.BROKEN_TESTS = lib.concatStringsSep " " [
  env.BROKEN_TESTS = lib.concatStringsSep " " (
    [
      "cmd-interrupt"
      "directive-export"
      "directive-export-gmake"
      "opt-keep-going-indirect"
      "varmod-localtime"
  ];
    ]
    # TODO: drop the name-conditioning on stdenv rebuild
    ++ lib.optional (stdenv.isDarwin && lib.getName stdenv != "bootstrap-stage1-stdenv-darwin") "export"
  );

  strictDeps = true;