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

2017-08-18 Thread Andrew Trick via swift-dev
I don’t know what this is about. Could you clean the workspace to see if it clears up? Test Case 'TestURLSession.test_httpRedirection' started at 2017-08-19 04:43:11.694 /home/buildnode/jenkins/workspace/oss-swift-incremental-RA-linux-ubuntu-14_04/swift/utils/build-script-impl: line 261: 30177

Re: [swift-dev] libSwiftAST (a-la-libclang) ?

2017-08-18 Thread Harlan Haskins via swift-dev
Hi Davide, We’ve just released an initial implementation of libSyntax for Swift that will be accessible in a toolchain in the near future. With it, you’d be able to generate Syntactic nodes on the fly, automatically, from Swift. I’d love for it to be applied to a fuzzer — I wanted to write som

Re: [swift-dev] Typos while hacking on the constraint system

2017-08-18 Thread Mark Lacey via swift-dev
> On Aug 18, 2017, at 5:35 AM, David Zarzycki wrote: > > > >> On Aug 17, 2017, at 15:28, Mark Lacey > > wrote: >> >> >> >>> On Aug 17, 2017, at 10:28 AM, David Zarzycki via swift-dev >>> mailto:swift-dev@swift.org>> wrote: >>> >>> On Aug 17, 2017, at 13

Re: [swift-dev] Validation test failures on swift-4.0-branch

2017-08-18 Thread Michael Gottesman via swift-dev
Did you try using the same preset as on the bot? We are generally pretty good about putting the preset on the main page of the specific job, i.e.: https://ci.swift.org/view/swift-4.0-branch/job/oss-swift-4.0-incremental-RA-linux-ubuntu-16_04/

[swift-dev] Validation test failures on swift-4.0-branch

2017-08-18 Thread Vivian Kong via swift-dev
While running validation tests on swift-4.0-branch on Ubuntu 16.04, I got ~20 failures but I don't see them on ci.swift.org. Wondering if there are any build settings/pre-reqs I might be missing. I'm doing a RelWithDebInfo (-r) build. Failing Tests (22): Swift-Unit :: run

Re: [swift-dev] Typos while hacking on the constraint system

2017-08-18 Thread David Zarzycki via swift-dev
> On Aug 17, 2017, at 15:28, Mark Lacey wrote: > > > >> On Aug 17, 2017, at 10:28 AM, David Zarzycki via swift-dev >> wrote: >> >> >>> On Aug 17, 2017, at 13:03, Robert Widmann wrote: >>> >>> It’s an unfortunate naming scheme, but I would hesitate to use notions like >>> “from” and “to

[swift-dev] libSwiftAST (a-la-libclang) ?

2017-08-18 Thread Davide Italiano via swift-dev
Hi, as part of a fuzzing project I have some needs to parse/mutate the AST. When I work with clang I generally use libclang (RecursiveASTVisitor) but I'm not aware of any Swift equivalent officially released as part of apple/swift ( the best I was able to find is this repo https://github.com/yanagi