[llvm-commits] [LNT] r167068 - /lnt/trunk/lnt/tests/compile.py
Michael Gottesman
mgottesman at apple.com
Tue Oct 30 17:14:10 PDT 2012
Author: mgottesman
Date: Tue Oct 30 19:14:10 2012
New Revision: 167068
URL: http://llvm.org/viewvc/llvm-project?rev=167068&view=rev
Log:
[compile test] Changed working directory name to not include spaces so that libtool works.
Modified:
lnt/trunk/lnt/tests/compile.py
Modified: lnt/trunk/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/compile.py?rev=167068&r1=167067&r2=167068&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/compile.py (original)
+++ lnt/trunk/lnt/tests/compile.py Tue Oct 30 19:14:10 2012
@@ -235,7 +235,7 @@
extra_flags, has_output, ignore_stderr)
def test_build(base_name, run_info, variables, project, build_config, num_jobs):
- name = '%s(config=%r,j=%d)' % (base_name, build_config, num_jobs)
+ name = '%s_config=%s_j=%d' % (base_name, build_config, num_jobs)
# Check if we need to expand the archive into the sandbox.
archive_path = get_input_path(opts, project['archive'])
with open(archive_path) as f:
More information about the llvm-commits
mailing list