Re: [swift-dev] [Swift CI] Build Still Failing: 1. OSS - Swift ASAN - OS X (master) #123

2017-03-07 Thread Douglas Gregor via swift-dev
Xi, this is in the area you’ve been working on recently. - Doug > On Mar 7, 2017, at 3:11 PM, no-re...@swift.org wrote: > > New issue found! > > [FAILURE] oss-swift-incremental-ASAN-RA-osx [#123] > > Build URL:https://ci.swift.org/job/oss-swift-incremental-ASAN-RA-osx/123/ >

Re: [swift-dev] [Swift CI] Build Still Failing: 1. OSS - Swift ASAN - OS X (master) #123

2017-03-07 Thread Xi Ge via swift-dev
Yes, it is. I’m investigating now. Xi > On Mar 7, 2017, at 3:18 PM, Douglas Gregor wrote: > > Xi, this is in the area you’ve been working on recently. > > - Doug > >> On Mar 7, 2017, at 3:11 PM, no-re...@swift.org >> wrote: >> >> New issue found! >> >> [FA

[swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - Ubuntu 16.10 (master) #504

2017-03-07 Thread no-reply--- via swift-dev
New issue found!Title: Report [FAILURE] oss-swift-package-linux-ubuntu-16_10 [#504] Build URL:https://ci.swift.org/job/oss-swift-package-linux-ubuntu-16_10/504/ Project:oss-swift-package-linux-ubuntu-16_10 Date of build:Tue, 07 Mar 2017 18:01:17 -0800 Build duration:1 hr 8

Re: [swift-dev] [Swift CI] Build Still Failing: 1. OSS - Swift ASAN - OS X (master) #123

2017-03-07 Thread Xi Ge via swift-dev
This has been fixed in our Asan bot since: https://ci.swift.org/job/oss-swift-incremental-ASAN-RA-osx/125/ Xi > On Mar 7, 2017, at 3:20 PM, Xi Ge via swift-dev wrote: > > Yes, it is. I’m investigating now. > > Xi > >> On Mar

[swift-dev] Fixing complation condition processing

2017-03-07 Thread rintaro ishizaki via swift-dev
Hi all, I'm fixing #if condition processing in this PR https://github.com/apple/swift/pull/7955 It resolves these issues: *A) SR-3663 : Precedence of '&&' and '||' and short-circuit rule of them.* #if false || true && false print("true")#endif This use