[zorg] r190263 - [llvmlab] Fixed a few typos.
Michael Gottesman
mgottesman at apple.com
Sat Sep 7 18:58:27 PDT 2013
Author: mgottesman
Date: Sat Sep 7 20:58:27 2013
New Revision: 190263
URL: http://llvm.org/viewvc/llvm-project?rev=190263&view=rev
Log:
[llvmlab] Fixed a few typos.
Modified:
zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=190263&r1=190262&r2=190263&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Sat Sep 7 20:58:27 2013
@@ -680,9 +680,9 @@ def phasedClang(config_options, is_boots
description=['rm', 'clang-tools-extra sources']))
f.addStep(buildbot.steps.shell.ShellCommand(
name='rm.debuginfo-tests',
- command=['rm', '-rfv', 'clang.src/test/debuginfo-test'],
+ command=['rm', '-rfv', 'clang.src/test/debuginfo-tests'],
haltOnFailure=True, workdir=WithProperties('%(builddir)s'),
- description=['rm', 'debuginfo-test sources']))
+ description=['rm', 'debuginfo-tests sources']))
# Pull sources.
f = phasedbuilderutils.SVNCleanupStep(f, 'llvm')
@@ -716,7 +716,7 @@ def phasedClang(config_options, is_boots
'trunk',
workdir='libcxx.src', alwaysUseLatest=False,
retry=(60, 5), description='pull.libcxx'))
- f = phasedbuilderutils.SVNCleanupStep(f, 'libcxx.src')
+ f = phasedbuilderutils.SVNCleanupStep(f, 'debuginfo-tests.src')
f.addStep(HostSVN(name='pull.debuginfo-tests', mode='incremental',
method='fresh',
repourl='http://llvm.org/svn/llvm-project/debuginfo-tests/'
@@ -747,11 +747,11 @@ def phasedClang(config_options, is_boots
haltOnFailure=True, workdir='clang.src/tools',
description=['cp', 'clang-tools-extra sources']))
f.addStep(buildbot.steps.shell.ShellCommand(
- name='cp.debuginfo-test-sources',
- command=['cp', '-Rfv', 'debuginfo-test.src',
- 'clang.src/test/debuginfo-test'],
+ name='cp.debuginfo-tests.sources',
+ command=['cp', '-Rfv', 'debuginfo-tests.src',
+ 'clang.src/test/debuginfo-tests'],
haltOnFailure=True, workdir=WithProperties('%(builddir)s'),
- description=['cp', 'debuginfo-test sources']))
+ description=['cp', 'debuginfo-tests sources']))
# Clean the install directory.
f.addStep(buildbot.steps.shell.ShellCommand(
More information about the llvm-commits
mailing list