diff options
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/fts.awk | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index d0dc131a..2bd627da 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2015-04-09 Arnold D. Robbins <arnold@skeeve.com> + + * fts.awk: Skip atime to avoid spurious timestamp + differences. Thanks to Nelson Beebe for pointing this out. + 2015-04-08 Eli Zaretskii <eliz@gnu.org> * Makefile.am (mpfrmemok1): Use -p- for portability and diff --git a/test/fts.awk b/test/fts.awk index 70af560f..b1df0600 100644 --- a/test/fts.awk +++ b/test/fts.awk @@ -69,7 +69,9 @@ function traverse(data, i) traverse(data[i]) } Level-- - } else { + } 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 } |