[llvm-testresults] buildbot failure in lab.llvm.org on phase3 - tree health

llvmlab-buildmaster at lab.llvm.org llvmlab-buildmaster at lab.llvm.org
Sun Oct 20 18:28:01 PDT 2013


The Buildbot has detected a new failure on builder phase3 - tree health while building lab.llvm.org.
Full details are available at:
 http://lab.llvm.org:8013/builders/phase3%20-%20tree%20health/builds/2060

Buildbot URL: http://lab.llvm.org:8013/

Buildslave for this Build: macpro1

Build Reason: scheduler
Build Source Stamp: 193055
Blamelist: alp,djasper,joerg

BUILD FAILED: failed

sincerely,
 -The Buildbot


================================================================================

CHANGES:
Files:
 lib/Format/ContinuationIndenter.cpp
 unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 09:50:30
Changed By: djasper
Comments: clang-format: Improve formatting of ObjC dict literals.

Before:
  NSDictionary *d = @{ @"nam" : NSUserNam(), @"dte" : [NSDate date],
                       @"processInfo" : [NSProcessInfo processInfo]
  };

After:
  NSDictionary *d = @{
    @"nam" : NSUserNam(),
    @"dte" : [NSDate date],
    @"processInfo" : [NSProcessInfo processInfo]
  };Properties: 
  phase_id: r193049-t20131020_095239-b13050



Files:
 lib/Format/TokenAnnotator.cpp
 unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 10:00:30
Changed By: djasper
Comments: clang-format: Support case ranges.

Before (note the missing space before "..." which can lead to compile
errors):
  switch (x) {
    case 'A'... 'Z':
    case 1... 5:
        break;
  }

After:
  switch (x) {
    case 'A' ... 'Z':
    case 1 ... 5:
        break;
  }Properties: 
  phase_id: r193050-t20131020_100231-b13051



Files:
 lib/Format/Format.cpp
 unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 10:36:30
Changed By: djasper
Comments: clang-format: Fix formatting of nested blocks after comment.

Before:
  DEBUG({ // Comment that used to confuse clang-format.
  fdafas();
  });
Before:
  DEBUG({ // Comments are now fine.
    fdafas();
  });

This fixed llvm.org/PR17619.Properties: 
  phase_id: r193053-t20131020_104628-b13053



File: source/Plugins/Process/POSIX/ProcessMessage.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 10:40:30
Changed By: joerg
Comments: Make sure switch covers all values.
Properties: 
  phase_id: r193053-t20131020_104628-b13053



Files:
 source/DataFormatters/FormatManager.cpp
 source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
 source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 10:40:30
Changed By: joerg
Comments: Fix python-free build.
Properties: 
  phase_id: r193053-t20131020_104628-b13053



Files:
 lib/Format/TokenAnnotator.cpp
 unittests/Format/FormatTest.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 11:20:39
Changed By: djasper
Comments: clang-format: Better understand Lambda poarameters.

Before:
  auto PointerBinding = [](const char * S) {};

After:
  auto PointerBinding = [](const char *S) {};

This fixes llvm.org/PR17618.Properties: 
  phase_id: r193054-t20131020_112239-b13054



Files:
 include/clang/Basic/DiagnosticSemaKinds.td
 lib/Sema/SemaDeclAttr.cpp
 lib/Sema/SemaOverload.cpp
 test/SemaCXX/attr-cleanup.cpp
On: smooshlab-project
At: Sun 20 Oct 2013 11:56:30
Changed By: alp
Comments: Fix crash in cleanup attr handling

ResolveSingleFunctionTemplateSpecialization() returns 0 and doesn't emit diags
unless the expression has template-ids, so we must null check the result.

Also add a better diag noting which overloads are causing the problem.

Reviewed by Aaron Ballman.Properties: 
  phase_id: r193055-t20131020_115831-b13055



LOGS:






More information about the llvm-testresults mailing list