Re: [swift-dev] Function overload resolution

2017-09-26 Thread Robert Widmann via swift-dev
> On Sep 25, 2017, at 10:01 AM, Nevin Brackett-Rozinsky > wrote: > > func triple(_ x: Int) -> Int { > return 3 * x > } > > extension Int { > func triple() -> Int { > return triple(self) // Error here > } > } > > > The error reads: >

Re: [swift-dev] New to building Swift toolchain

2017-09-26 Thread Maksym Grebenets via swift-dev
Hi Michael Thanks for following up! I've found some extra time too to give it few more tries. As a matter of fact, I've tried quite a few things. Spoiler alert - none of them worked :) Here's the list of things anyways: - A completely clean checkout of sift repo and all submodules (still same

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

2017-09-26 Thread Slava Pestov via swift-dev
You’re right, because it’s due to my changes. This should fix it: https://github.com/apple/swift/pull/12131 Slava > On Sep 26, 2017, at 1:13 PM, Pavel Yaskevich via swift-dev > wrote: > > Hi guys, > >This doesn’t seem to

Re: [swift-lldb-dev] swift-lldb release branches

2017-09-26 Thread Francis Ricci via swift-lldb-dev
Wow, with a bit of code-sign fiddling, that appears to be working, and I can manually debug the test binaries just fine. Thank you so much! On Tue, Sep 26, 2017 at 2:00 PM, Jim Ingham wrote: > It is run with the —test flag. But you can also run it by hand (that’s > primarily

Re: [swift-lldb-dev] swift-lldb release branches

2017-09-26 Thread Jim Ingham via swift-lldb-dev
It is run with the —test flag. But you can also run it by hand (that’s primarily what I do): $cd /test $ ./dotest.py Or if you just want to run the swift part of the test suite, do: $ ./dotest.py testcases/lang/swift Jim > On Sep 26, 2017, at 7:18 AM, Francis Ricci via swift-lldb-dev >

Re: [swift-dev] New to building Swift toolchain

2017-09-26 Thread Michael Gottesman via swift-dev
Ok. My side machine info: ``` $ sw_vers ProductName:Mac OS X ProductVersion: 10.12.6 BuildVersion: 16G26 $ xcodebuild -version Xcode 9.0 Build version 9M214v $ cmake --version cmake version 3.8.2 CMake suite maintained and supported by Kitware (kitware.com/cmake). $ ``` So I think I

Re: [swift-dev] New to building Swift toolchain

2017-09-26 Thread Michael Gottesman via swift-dev
Ok. I am looking at this now on my side machine. Sorry for the delay, I had to land code and then I had vacation = (. Michael > On Sep 20, 2017, at 10:05 PM, Michael Gottesman via swift-dev > wrote: > > FYI, I haven't forgotten you! I just need to land some code tonight

Re: [swift-dev] A constraint system / type variable question

2017-09-26 Thread Joe Groff via swift-dev
> On Sep 25, 2017, at 7:53 PM, David Zarzycki wrote: > > > >> On Sep 25, 2017, at 21:59, Joe Groff via swift-dev >> wrote: >> >> >> >> On Sep 25, 2017, at 3:41 PM, David Zarzycki wrote: >> >>> >>> On Sep 25, 2017, at 18:23, Joe

Re: [swift-lldb-dev] swift-lldb release branches

2017-09-26 Thread Francis Ricci via swift-lldb-dev
Is the lldb test suite run automatically by swift's build-script? I'm running the following and not seeing any lldb tests run: ./swift/utils/build-script -d --lldb --test I'd try to just run the test suite manually from the lldb build directory, but I've never had any luck running the lldb test

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

2017-09-26 Thread no-reply--- via swift-dev
Title: Report [FAILURE] oss-swift-package-osx [#359] Build URL:https://ci.swift.org/job/oss-swift-package-osx/359/ Project:oss-swift-package-osx Date of build:Mon, 25 Sep 2017 23:51:40 -0500 Build duration:1 hr 39 min Identified problems:Regression test failed: This

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

2017-09-26 Thread Slava Pestov via swift-dev
This should fix it: https://github.com/apple/swift/pull/12119 Slava > On Sep 25, 2017, at 9:55 PM, Slava Pestov via swift-dev > wrote: > > This is from my changes. I think I know what the problem is, I’ll test a fix > now. >