From 48c7d20c424f3b1de3c06f53cd0d914c5cfe42d7 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Fri, 29 Jul 2016 06:14:21 -0500 Subject: [PATCH] COMP: Ignore nfs future file modification warning Many NFS mount points are slightly out of sync with the build computer. This cuases warnings that are not related to the actual codebase. --- CTestCustom.cmake.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 5fc823a..45fb1cc 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -41,6 +41,9 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION # Warnings caused by string truncation in the test code. The truncation is # intentional "Character string truncated to length 1 on assignment" + + # Warnings caused by NFS build directories have out-of-sync times + "Warning: File .* has modification time .* in the future" ) # Only rung post test if suitable python interpreter was found -- 2.7.4