This is upstream commit c9a018c. We have observed random failures of this test on i686 that seem related to load. 2015-05-21 Arnold D. Robbins * fts.awk: Really remove atime from the output. This avoids spurious failures on heavily loaded systems. diff --git a/test/fts.awk b/test/fts.awk index b1df060..dea5b68 100644 --- a/test/fts.awk +++ b/test/fts.awk @@ -50,6 +50,11 @@ function sort_traverse(data, sorted, i) { asorti(data, sorted) for (i = 1; i in sorted; i++) { + # 5/2015: skip for atime, since there can + # occasionally be small differences. + if (sorted[i] == "atime") + continue + indent() printf("%s --> %s\n", sorted[i], data[sorted[i]]) > output } @@ -63,17 +68,20 @@ function traverse(data, i) printf("%s:\n", i) > output Level++ - if (("mtime" in data[i]) && ! isarray(data[i][mtime])) { + if (("mtime" in data[i]) && ! isarray(data[i]["mtime"])) { sort_traverse(data[i]) } else { traverse(data[i]) } Level-- - } else if (data[i] != "atime") { - # 4/2015: skip for atime, since there can - # occasionally be small differences. - indent() - printf("%s --> %s\n", i, data[i]) > output +# } else { +# JUNK = 1 +# if (i != "atime") { +# # 4/2015: skip for atime, since there can +# # occasionally be small differences. +# indent() +# printf("%s --> %s\n", i, data[i]) > output +# } } } } diff/gnu/packages/gd.scm?id=51a6d1dd2f1bfacba6a105b0135aacf8ec67e319'>diff
path: root/gnu/packages/gd.scm
AgeCommit message (Expand)Author
2023-03-02Merge remote-tracking branch 'savannah/master' into core-updates...Conflicts: gnu/local.mk gnu/packages/autotools.scm gnu/packages/cmake.scm gnu/packages/gnuzilla.scm gnu/packages/haskell.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/samba.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/wxwidgets.scm Christopher Baines
2023-02-25gnu: perl-gd: Use gexps....This helps cross-compilation: in that case, '%build-inputs' was unbound. * gnu/packages/gd.scm (perl-gd)[arguments]: Rewrite using gexps. Ludovic Courtès
2023-02-25gnu: perl-gd: Remove input labels....* gnu/packages/gd.scm (perl-gd)[inputs]: Remove labels. Ludovic Courtès