Re: [Vala] Testing framework

2016-02-01 Thread Chris Daley
Hi Steven, It's still very much active, I've just had to take some time out to do some work on my night job (managing a Rock band). I'm drafting a blog post this afternoon with an update on progress and some new ways to contribute, so stay tuned. Cheers Chris D 2016-02-01 14:22 GMT-08:00

Re: [Vala] Testing framework

2016-02-01 Thread Steven Oliver
Hey, I just wanted to drop in and see if any progress had been made on this? I for one am very excited about the possibility.  Thank you, Steven N. Oliver On Fri, Jan 8, 2016 at 2:55 PM -0800, "Chris Daley" wrote: Hi Al, Thanks for the input, this is very

Re: [Vala] Testing framework

2016-02-01 Thread Chris Daley
Hi Evan, Thanks for the offer, I've sent you a pull request on Github. I've got some new Vala posts in the can that aren't related to Valadate that should be up later this week as well. Cheers Chris D 2016-02-01 16:12 GMT-08:00 Evan Nemerson : > Since you're actively blogging

[Vala] invalid C code generated & a compiler crash

2016-02-01 Thread Matthias Berndt
Hi, The vala compiler generates invalid C code for the following program: class Aaa { public static int main(string[] args) { stdout.printf("%s\n", typeof(T).name()); return 0; } } Shouldn't it be disallowed to typeof() a type parameter in a static method (or a generic type