[test-suite] r337618 - [CUDA, test-suite] Disable "compiletime" metric collector.

Artem Belevich via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 20 14:02:05 PDT 2018


Author: tra
Date: Fri Jul 20 14:02:05 2018
New Revision: 337618

URL: http://llvm.org/viewvc/llvm-project?rev=337618&view=rev
Log:
[CUDA, test-suite] Disable "compiletime" metric collector.

"compiletime" collector traverses complete build directory after each
test run and sometimes ends up consuming way more time than
it takes to run the tests.

Modified:
    test-suite/trunk/External/CUDA/lit.local.cfg

Modified: test-suite/trunk/External/CUDA/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/CUDA/lit.local.cfg?rev=337618&r1=337617&r2=337618&view=diff
==============================================================================
--- test-suite/trunk/External/CUDA/lit.local.cfg (original)
+++ test-suite/trunk/External/CUDA/lit.local.cfg Fri Jul 20 14:02:05 2018
@@ -17,3 +17,8 @@ for var in cuda_env_vars:
     config.environment[var] = os.environ[var]
 
 config.traditional_output = True
+
+# "compiletime" wants to traverse whole build directory after each test which
+# takes a lot of time if we have config with split thrust tests. Disable it
+# until it has smaller overhead.
+config.test_modules.remove("compiletime")




More information about the llvm-commits mailing list