Skip to content

Commit 2cc53bb

Browse files
committed
Work around unordered-containers failing test suite with -O0
1 parent 6e3740e commit 2cc53bb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

survey/default.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1017,6 +1017,14 @@ let
10171017
(if disableOptimization then dontCheck else lib.id)
10181018
super.ap-normalize;
10191019

1020+
# Fails the tests
1021+
# issue379.Lazy.unionWith
1022+
# issue379.union
1023+
# TODO: File an upstream bug for that, after reproducing it outside of nix.
1024+
unordered-containers =
1025+
(if disableOptimization then dontCheck else lib.id)
1026+
super.unordered-containers;
1027+
10201028
arbtt =
10211029
addStaticLinkerFlagsWithPkgconfig
10221030
super.arbtt

0 commit comments

Comments
 (0)