lol

bmake: cmd-interrupt test tries to `SIGINT` make itself, is flaky as a result (#439193)

authored by philiptaron.tngl.sh and committed by

GitHub df85b796 e0403b68

+9 -14
+9 -14
pkgs/by-name/bm/bmake/package.nix
··· 53 53 ]; 54 54 55 55 # Disabled tests: 56 + # * cmd-interrupt: tries to `SIGINT` make itself, flaky as a result 56 57 # * directive-export{,-gmake}: another failure related to TZ variables 57 58 # * opt-keep-going-indirect: not yet known 58 - # * varmod-localtime: musl doesn't support TZDIR and this test relies on 59 - # impure, implicit paths 60 - # * interrupt-compat (fails on x86_64-linux building for i686-linux) 61 - env.BROKEN_TESTS = lib.concatStringsSep " " ( 62 - [ 63 - "directive-export" 64 - "directive-export-gmake" 65 - "opt-keep-going-indirect" 66 - "varmod-localtime" 67 - ] 68 - ++ lib.optionals stdenv.targetPlatform.is32bit [ 69 - "interrupt-compat" 70 - ] 71 - ); 59 + # * varmod-localtime: musl doesn't support TZDIR and this test relies on impure, implicit paths 60 + env.BROKEN_TESTS = lib.concatStringsSep " " [ 61 + "cmd-interrupt" 62 + "directive-export" 63 + "directive-export-gmake" 64 + "opt-keep-going-indirect" 65 + "varmod-localtime" 66 + ]; 72 67 73 68 strictDeps = true; 74 69