[swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #158

2017-08-29 Thread no-reply--- via swift-dev
New issue found!Title: Report [FAILURE] oss-swift-package-osx [#158] Build URL:https://ci.swift.org/job/oss-swift-package-osx/158/ Project:oss-swift-package-osx Date of build:Tue, 29 Aug 2017 22:01:42 -0500 Build duration:1 hr 38 min Identified problems:Regression test fa

Re: [swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #157

2017-08-29 Thread Mishal Shah via swift-dev
Network issue. Thanks, Mishal Shah > On Aug 29, 2017, at 6:38 PM, Michael Ilseman wrote: > > Bot issue? > > 20:38:58 FATAL: command execution failed > 20:38:58 java.io.EOFException > 20:38:58 at > java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2624) > 20:38:5

[swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.0) #149

2017-08-29 Thread no-reply--- via swift-dev
Title: Report [FAILURE] oss-swift-4.0-package-osx [#149] Build URL:https://ci.swift.org/job/oss-swift-4.0-package-osx/149/ Project:oss-swift-4.0-package-osx Date of build:Tue, 29 Aug 2017 19:27:34 -0500 Build duration:1 hr 11 min Changes No Chang

Re: [swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #157

2017-08-29 Thread Michael Ilseman via swift-dev
Bot issue? 20:38:58 FATAL: command execution failed 20:38:58 java.io.EOFException 20:38:58at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2624) 20:38:58at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:3099) 20:38:58

[swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #157

2017-08-29 Thread no-reply--- via swift-dev
New issue found!Title: Report [FAILURE] oss-swift-package-osx [#157] Build URL:https://ci.swift.org/job/oss-swift-package-osx/157/ Project:oss-swift-package-osx Date of build:Tue, 29 Aug 2017 20:01:44 -0500 Build duration:37 min Changes Commit 10d

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

2017-08-29 Thread Joe Shajrawi via swift-dev
This PR should fix it: https://github.com/apple/swift/pull/11686 Regards, —Joe |  | 📧 shajr...@apple.com | 📱(+1) 408-930-5203 > On Aug 29, 2017, at 16:27, Joe Shajrawi wrote: > > My commit might have uncovered an ol

Re: [swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #156

2017-08-29 Thread Michael Ilseman via swift-dev
This is still the issue with libresilient_struct.dylib. It complains about a missing code signature. Slava, do you know what might be wrong here? 19:29:30 dyld: Library not loaded: /Users/buildnode/jenkins/workspace/oss-swift-package-osx/build/buildbot_osx/swift-macosx-x86_64/test-iphonesimulat

[swift-dev] [Swift CI] Build Still Failing: OSS - Swift Package - OS X (master) #156

2017-08-29 Thread no-reply--- via swift-dev
New issue found!Title: Report [FAILURE] oss-swift-package-osx [#156] Build URL:https://ci.swift.org/job/oss-swift-package-osx/156/ Project:oss-swift-package-osx Date of build:Tue, 29 Aug 2017 18:01:42 -0500 Build duration:1 hr 38 min Identified problems:Regression test fa

Re: [swift-dev] [swift-users] Build toolchain failure for swift-4.0-branch on Mac OSX 10.12.6

2017-08-29 Thread Mishal Shah via swift-dev
Adding swift-lldb-dev group. Thanks, Mishal Shah > On Aug 29, 2017, at 4:00 PM, Raj Barik via swift-users > wrote: > > OSx version: 10.12.6 (16G29) > Steps to reproduce the error: > 1) > git clone https://github.com/apple/swift.git > > ./swift/utils/updat

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

2017-08-29 Thread Joe Shajrawi via swift-dev
My commit might have uncovered an old bug in eraseUsesOfInstruction by changing which large-types are expanded in the optimizer, but it did not cause this underlying problem: There’s a bug in the recursive eraser’s logic that, in rare occasions, deletes a ‘user’ that’s yet to be iterated over i

[swift-dev] Module verifier error with master branch

2017-08-29 Thread Raj Barik via swift-dev
OS: 10.12.6 (16G29) Steps: 1) Checkout swift and build master branch git clone https://github.com/apple/swift.git ./swift/utils/update-checkout --clone 2) Edit swift/utils/build-presets.ini to remove tests [preset: buildbot_osx_package] mixin-preset= mixin_osx_package_base

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

2017-08-29 Thread Michael Ilseman via swift-dev
Asan is detecting a use after free. Michael G or Joe, is this likely either of you? SUMMARY: AddressSanitizer: heap-use-after-free (/Users/buildnode/jenkins/workspace/oss-swift-incremental-ASAN-RA-osx/buildbot_incremental_asan/swift-macosx-x86_64/bin/swift:x86_64+0x101bc796c) in swift::eraseUse

[swift-dev] Build toolchain failure for swift-4.0-branch on Mac OSX 10.12.6

2017-08-29 Thread Raj Barik via swift-dev
OSx version: 10.12.6 (16G29) Steps to reproduce the error: 1) git clone https://github.com/apple/swift.git ./swift/utils/update-checkout --clone --scheme swift-4.0-branch 2) Edit build-preset.ini to remove tests and assertions: [preset: mixin_lightweight_assertions] #assertions #no-swift-stdlib-

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Zarzycki via swift-dev
Hi David, To add to what I wrote earlier, the design of the Swift is such that adding new features isn’t “hard”, but it does require time and patience because most new features have ripple effects on other parts of the compiler that need to be thought through. Fortunately, the design of the com

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Sweeris via swift-dev
> On Aug 29, 2017, at 14:31, Slava Pestov wrote: > > >>> On Aug 29, 2017, at 2:21 PM, David Sweeris wrote: >>> >>> On Aug 29, 2017, at 1:49 PM, Slava Pestov wrote: On Aug 29, 2017, at 11:03 AM, David Sweeris via swift-dev wrote: Hi everyone! I'm tryin

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread Slava Pestov via swift-dev
> On Aug 29, 2017, at 2:21 PM, David Sweeris wrote: > > >> On Aug 29, 2017, at 1:49 PM, Slava Pestov > > wrote: >> >> >>> On Aug 29, 2017, at 11:03 AM, David Sweeris via swift-dev >>> mailto:swift-dev@swift.org>> wrote: >>> >>> Hi everyone! I'm trying to implement

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Sweeris via swift-dev
I was thinking I'd probably eventually need to muck about with those, but it's good to know that I should start poking around in there sooner rather than later. Thanks! > On Aug 29, 2017, at 11:21 AM, David Zarzycki wrote: > > Hi David, > > You’re arguably deep in the weeds. Try starting by a

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Sweeris via swift-dev
> On Aug 29, 2017, at 1:49 PM, Slava Pestov wrote: > > >> On Aug 29, 2017, at 11:03 AM, David Sweeris via swift-dev >> wrote: >> >> Hi everyone! I'm trying to implement literal values as generic types. > > Can you briefly explain what you mean by this? > > Are you referring to let-polymorp

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread Slava Pestov via swift-dev
> On Aug 29, 2017, at 11:03 AM, David Sweeris via swift-dev > wrote: > > Hi everyone! I'm trying to implement literal values as generic types. Can you briefly explain what you mean by this? Are you referring to let-polymorphism, like let fn = { $0 } let f1: (Int) -> Int = fn let f2: (Float)

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 14.04 - Long Test (master) #323

2017-08-29 Thread Michael Ilseman via swift-dev
Any idea what could cause this? TEST 'Swift-Unit :: runtime/LongTests/./SwiftRuntimeLongTests/LongRefcountingTest.nonatomic_unowned_retain_overflow_DeathTest' FAILED Note: Google Test filter = LongRefcountingTest.nonatomic_unowned_retain_overflow_DeathT

Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.0) #146

2017-08-29 Thread Mishal Shah via swift-dev
Node lost connection. Thanks, Mishal Shah > On Aug 29, 2017, at 10:40 AM, Michael Ilseman wrote: > > Mishal, is this a bot issue? > > Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60FATAL: command execution failed > java.io.EOFException > at > java.io.ObjectInputStream$PeekInputStream.readFul

Re: [swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Zarzycki via swift-dev
Hi David, You’re arguably deep in the weeds. Try starting by adding new nodes to ExprNodes.def and DeclNodes.def and watch what blows up. Once you do that, crib code similar nodes to get your new Expr/Decl nodes to start compiling. Please also keep in mind that LLVM and derived projects like Sw

[swift-dev] Advice for implementing "literal values as generic types"

2017-08-29 Thread David Sweeris via swift-dev
Hi everyone! I'm trying to implement literal values as generic types. So far, I've made `LiteralExpr` inherit from both `Expr` and `GenericTypeDecl` (instead of just `Expr`), and did whatever other changes were necessary to get that compiling (mostly putting several "using Expr::setImplicit;" ki

Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.0) #146

2017-08-29 Thread Michael Ilseman via swift-dev
+Mishal for real this time ;-) > On Aug 29, 2017, at 10:40 AM, Michael Ilseman via swift-dev > wrote: > > Mishal, is this a bot issue? > > Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60FATAL: command execution failed > java.io.EOFException > at > java.io.ObjectInputStream$PeekInputStream.rea

Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.0) #146

2017-08-29 Thread Michael Ilseman via swift-dev
Mishal, is this a bot issue? Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60FATAL: command execution failed java.io.EOFException at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2624) at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputSt

Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (master) #150

2017-08-29 Thread Michael Ilseman via swift-dev
Slava, is this an issue with your changes, or is there an issue with signing on the bots? 08:26:08 Command Output (stderr): 08:26:08 -- 08:26:08 dyld: Library not loaded: /Users/buildnode/jenkins/workspace/oss-swift-package-osx/build/buildbot_osx/swift-macosx-x86_64/test-iphonesimulator-x86

Re: [swift-dev] [Swift CI] Build Still Failing: 0. OSS - Swift Incremental RA - Ubuntu 16.10 (master) #298

2017-08-29 Thread George Karpenkov via swift-dev
seems like the required change cherry-picked to Clang have not propagated yet. Let’s see whether the issue will be resolved by itself. > On Aug 28, 2017, at 6:21 PM, no-re...@swift.org wrote: > > New issue found! > > [FAILURE] oss-swift-incremental-RA-linux-ubuntu-16_10 [#298] > > Build URL:

Re: [swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (master) #146

2017-08-29 Thread George Karpenkov via swift-dev
Yeah, could you check all merges got propagated? The tests did pass in PR testing. Sent from my iPhone > On Aug 28, 2017, at 19:48, Michael Ilseman wrote: > > George, is this the same issue you were seeing? > > >> On Aug 28, 2017, at 7:48 PM, Michael Ilseman wrote: >> >> More specifically,

[swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.0) #146

2017-08-29 Thread no-reply--- via swift-dev
Title: Report [FAILURE] oss-swift-4.0-package-osx [#146] Build URL:https://ci.swift.org/job/oss-swift-4.0-package-osx/146/ Project:oss-swift-4.0-package-osx Date of build:Tue, 29 Aug 2017 09:50:39 -0500 Build duration:2 hr 12 min Changes No Chang

[swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (master) #150

2017-08-29 Thread no-reply--- via swift-dev
Title: Report [FAILURE] oss-swift-package-osx [#150] Build URL:https://ci.swift.org/job/oss-swift-package-osx/150/ Project:oss-swift-package-osx Date of build:Tue, 29 Aug 2017 06:57:40 -0500 Build duration:1 hr 37 min Identified problems:Regression test failed: This build