aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Belevich <tra@google.com>2018-07-20 21:02:05 +0000
committerArtem Belevich <tra@google.com>2018-07-20 21:02:05 +0000
commit3d0ce4e4e623d7ae56e39d0d4b630ea2dd9e2197 (patch)
tree8300f64e9daf767a18246b82c27da22d4c5dbd13
parent7afba14b2869cfbccf5828fb2acd53bcaffee9e3 (diff)
[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. git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@337618 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--External/CUDA/lit.local.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/External/CUDA/lit.local.cfg b/External/CUDA/lit.local.cfg
index cfea65a7..9270e765 100644
--- a/External/CUDA/lit.local.cfg
+++ b/External/CUDA/lit.local.cfg
@@ -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")