[PATCH] D15870: [test-suite] Add CMake option to use host-timeit
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 5 12:01:30 PST 2016
MatzeB added a comment.
What about we avoid an extra configuration flag and just always use timeit except when remote_host is set? Something like this:
timeit = "%s/tools/timeit" % config.test_source_root # move upwards
# ...
if config.remote_host:
timeit = "%s/tools/timeit-target" % config.test_source_root
Repository:
rL LLVM
http://reviews.llvm.org/D15870
More information about the llvm-commits
mailing list