Jump to page: 1 2
Thread overview
[dmd-beta] Remaining regressions
Feb 12, 2013
Walter Bright
Feb 12, 2013
Andrej Mitrovic
Feb 12, 2013
Walter Bright
Feb 12, 2013
Andrej Mitrovic
Feb 12, 2013
Andrej Mitrovic
Feb 15, 2013
Walter Bright
Feb 15, 2013
Andrej Mitrovic
Feb 15, 2013
Walter Bright
Feb 15, 2013
Brad Roberts
Feb 15, 2013
Walter Bright
Feb 15, 2013
Brad Roberts
Feb 15, 2013
Walter Bright
Feb 17, 2013
Jonathan M Davis
Feb 17, 2013
Andrej Mitrovic
Feb 17, 2013
Walter Bright
Feb 17, 2013
kenji hara
Feb 17, 2013
Walter Bright
Feb 17, 2013
kenji hara
February 12, 2013
4 of them:

http://d.puremagic.com/issues/buglist.cgi?query_format=advanced&bug_severity=regression&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED

Anyone want to tackle any?
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 12, 2013
On 2/12/13, Walter Bright <walter@digitalmars.com> wrote:
> 4 of them:
>
> http://d.puremagic.com/issues/buglist.cgi?query_format=advanced&bug_severity=regression&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED

9444 seems easy to fix. Someone replaced this in 2.058:

errnoEnforce(.pclose(p.handle) == 0,
                        "Could not close pipe `"~p.name~"'");

with this in 2.059:

errnoEnforce(.pclose(_p.handle) != -1,
        "Could not close pipe `"~_name~"'");

Which is OK, but we need a check for '0' in the call in 'shell', and change:

f.popen(cmd, "r");

to:

errnoEnforce(f.popen(cmd, "r") == 0);

I'll take over.
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 12, 2013
On 2/12/2013 1:39 PM, Andrej Mitrovic wrote:
> I'll take over.
>

Thanks! You da man!
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 12, 2013
On 2/12/13, Walter Bright <walter@digitalmars.com> wrote:
>
> On 2/12/2013 1:39 PM, Andrej Mitrovic wrote:
>> I'll take over.
>>
>
> Thanks! You da man!

https://github.com/D-Programming-Language/phobos/pull/1135

But wait for the autotester first, only tested on Win32 as I haven't
set up a proper Posix build system yet.
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 12, 2013
On 2/12/13, Walter Bright <walter@digitalmars.com> wrote:
> 4 of them:
>
> http://d.puremagic.com/issues/buglist.cgi?query_format=advanced&bug_severity=regression&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED

Fix for 9457: https://github.com/D-Programming-Language/phobos/pull/1136
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 14, 2013
Barring any last minute objections, I'm going to do the release tonight.

_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 15, 2013
On 2/15/13, Walter Bright <walter@digitalmars.com> wrote:
> Barring any last minute objections, I'm going to do the release tonight.

I was hoping this could get in: https://github.com/D-Programming-Language/dmd/pull/1641

But if there's no time then we'll just have to avoid documenting the
feature until it's fully implemented for the release coming after this
one (2.063).
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 14, 2013
There's an open pull request for bug 9444.  Any reason NOT to pull it?

http://d.puremagic.com/issues/show_bug.cgi?id=9444 https://github.com/D-Programming-Language/phobos/pull/1135

I'm disappointed that we've yet to ever hit 0 open regressions for a release.  That should be a minimum release criteria.

On Thu, 14 Feb 2013, Walter Bright wrote:

> Date: Thu, 14 Feb 2013 18:38:26 -0800
> From: Walter Bright <walter@digitalmars.com>
> Reply-To: Discuss the dmd beta releases for D <dmd-beta@puremagic.com>
> To: dmd-beta@puremagic.com
> Subject: Re: [dmd-beta] Remaining regressions
> 
> Barring any last minute objections, I'm going to do the release tonight.
> 
> _______________________________________________
> dmd-beta mailing list
> dmd-beta@puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
> 
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 14, 2013
On 2/14/2013 6:45 PM, Andrej Mitrovic wrote:
> On 2/15/13, Walter Bright <walter@digitalmars.com> wrote:
>> Barring any last minute objections, I'm going to do the release tonight.
> I was hoping this could get in:
> https://github.com/D-Programming-Language/dmd/pull/1641
>
> But if there's no time then we'll just have to avoid documenting the
> feature until it's fully implemented for the release coming after this
> one (2.063).
>

There's a lot of nice stuff to pull, but I don't want to delay things any further, and I don't want to pull new features into the beta unless absolutely necessary.
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

February 14, 2013
On 2/14/2013 6:48 PM, Brad Roberts wrote:
> There's an open pull request for bug 9444.  Any reason NOT to pull it?
>
> http://d.puremagic.com/issues/show_bug.cgi?id=9444
> https://github.com/D-Programming-Language/phobos/pull/1135
>

Ok, it's in now.
_______________________________________________
dmd-beta mailing list
dmd-beta@puremagic.com
http://lists.puremagic.com/mailman/listinfo/dmd-beta

« First   ‹ Prev
1 2