Changeset 166674 in webkit


Ignore:
Timestamp:
Apr 2, 2014 4:09:01 PM (10 years ago)
Author:
ddkilzer@apple.com
Message:

filter-build-webkit: Ignore xcodebuild warnings when compiling with newer builds of clang
<http://webkit.org/b/131045>

Reviewed by Daniel Bates.

  • Scripts/filter-build-webkit:

(shouldIgnoreLine): Ignore DVTAssertions related to new builds
of clang, plus debug data for all DVTAssertions.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r166669 r166674  
     12014-04-02  David Kilzer  <ddkilzer@apple.com>
     2
     3        filter-build-webkit: Ignore xcodebuild warnings when compiling with newer builds of clang
     4        <http://webkit.org/b/131045>
     5
     6        Reviewed by Daniel Bates.
     7
     8        * Scripts/filter-build-webkit:
     9        (shouldIgnoreLine): Ignore DVTAssertions related to new builds
     10        of clang, plus debug data for all DVTAssertions.
     11
    1122014-04-01  Dean Jackson  <dino@apple.com>
    213
  • trunk/Tools/Scripts/filter-build-webkit

    r166177 r166674  
    11#!/usr/bin/perl -w
    22
    3 # Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved.
     3# Copyright (C) 2011, 2012, 2013, 2014 Apple Inc. All rights reserved.
    44#
    55# Redistribution and use in source and binary forms, with or without
     
    257257    return 1 if $line =~ /may not function in the Simulator because Ad Hoc/;
    258258    return 1 if $line =~ /\/usr\/bin\/clang .*? \> \S+.sb/;
     259    return 1 if $line =~ / xcodebuild\[[0-9]+:[0-9a-f]+\]\s+DVTAssertions: Warning in .*XCClangResultsPostprocessor.m/;
     260    return 1 if $line =~ /^(Details|Object|Method|Function|Thread):/;
     261    return 1 if $line =~ /^Please file a bug at /;
    259262
    260263    if ($platform eq "win") {
Note: See TracChangeset for help on using the changeset viewer.