On Thu, Apr 12, 2012 at 16:58, Daniel Jelinski wrote:
> 2012/4/12 Scott Ritchie :
>> On 4/12/12 1:23 AM, Daniel Jeliński wrote:
>>>
>>> Hello all,
>>> I am trying to get Microsoft SQL Server Management Studio to work
>>> flawlessly under Wine. For the most part I create and triage related bug
>>>
2012/4/12 Scott Ritchie :
> On 4/12/12 1:23 AM, Daniel Jeliński wrote:
>>
>> Hello all,
>> I am trying to get Microsoft SQL Server Management Studio to work
>> flawlessly under Wine. For the most part I create and triage related bug
>> reports, but recently I also started tinkering with code, speci
On 4/12/12 1:23 AM, Daniel Jeliński wrote:
Hello all,
I am trying to get Microsoft SQL Server Management Studio to work
flawlessly under Wine. For the most part I create and triage related bug
reports, but recently I also started tinkering with code, specifically
with comctl library, which I am m
Marcus, Alexey, thank you for your ideas. I just did several builds to
see how to make things work. Here's what I got:
make clean && make - does not work (the problem persists)
make distclean && ./configure && make - same as above
git clean -xdf && ./configure && make - this one finally worked.
I'm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
12.04.2012 12:23, Daniel Jeliński wrote:
> ... This time make clean && make depend && make did not help.
>
I had hit the problems like you describe several times while doing bisecting.
After a lot of trial and error testing I had finally come up with
On Thu, Apr 12, 2012 at 10:23:07AM +0200, Daniel Jeliński wrote:
> Hello all,
> I am trying to get Microsoft SQL Server Management Studio to work
> flawlessly under Wine. For the most part I create and triage related
> bug reports, but recently I also started tinkering with code,
> specifically wit
On Tue, 25 Oct 2011, Damjan Jovanovic wrote:
[...]
> Now the next question is, how to get the binaries to run on any distro? Or
> should I just compile on Ubuntu because most people run that (do they still,
> after Unity?)?
Compile on Debian Stable or even Debian OldStable, taking care to still
m
2011/10/18 André Hentschel
> Am 18.10.2011 10:45, schrieb Damjan Jovanovic:
> > This tool compiled all 35000 or so commits from Wine 1.0 to around 4th
> October 2011 in only 7 days, generating a Git repository of Wine binaries
> that's only 26 gigabytes in size. Regression testing with binaries i
I have two suggestions -
- git clone has a "--depth" option which does a shallow clone (i.e. with some
history removed).
- you can use "git-archive" to export arbitrary commits out as a tar ball
dynamically; there is no need to have store a tar ball permanently.
That said, I am doubtful about
On Wed, Oct 19, 2011 at 04:18:50PM +0200, Frédéric Delanoy wrote:
> On Wed, Oct 19, 2011 at 15:50, Marcus Meissner wrote:
> > On Wed, Oct 19, 2011 at 02:42:29PM +0100, Ken Sharp wrote:
> >>
> >>
> >> On 19/10/11 13:43, Frédéric Delanoy wrote:
> >> >On Wed, Oct 19, 2011 at 14:08, Joel Holdsworth
On Wed, Oct 19, 2011 at 15:50, Marcus Meissner wrote:
> On Wed, Oct 19, 2011 at 02:42:29PM +0100, Ken Sharp wrote:
>>
>>
>> On 19/10/11 13:43, Frédéric Delanoy wrote:
>> >On Wed, Oct 19, 2011 at 14:08, Joel Holdsworth
>> >wrote:
>> >>Alternatively, have you considered doing a .tar.gz of every bu
On Wed, Oct 19, 2011 at 02:42:29PM +0100, Ken Sharp wrote:
>
>
> On 19/10/11 13:43, Frédéric Delanoy wrote:
> >On Wed, Oct 19, 2011 at 14:08, Joel Holdsworth
> >wrote:
> >>Alternatively, have you considered doing a .tar.gz of every build snapshot,
> >>and placing that on a server somewhere?
> >
On 19/10/11 13:43, Frédéric Delanoy wrote:
On Wed, Oct 19, 2011 at 14:08, Joel Holdsworth wrote:
Alternatively, have you considered doing a .tar.gz of every build snapshot,
and placing that on a server somewhere?
e.g. a folder full of 36def4af0ca85a1d0e66b5207056775bcb3b09ff.tar.gz files?
On Wed, Oct 19, 2011 at 14:08, Joel Holdsworth wrote:
> Alternatively, have you considered doing a .tar.gz of every build snapshot,
> and placing that on a server somewhere?
>
> e.g. a folder full of 36def4af0ca85a1d0e66b5207056775bcb3b09ff.tar.gz files?
tar.xz would compress better
> Then one c
Alternatively, have you considered doing a .tar.gz of every build snapshot, and
placing that on a server somewhere?
e.g. a folder full of36def4af0ca85a1d0e66b5207056775bcb3b09ff.tar.gz files?
Then one could write a simple wine regression bisect tool that implements
similar semantics to git bise
2011/10/18 André Hentschel
> Am 18.10.2011 10:45, schrieb Damjan Jovanovic:
> > This tool compiled all 35000 or so commits from Wine 1.0 to around 4th
> October 2011 in only 7 days, generating a Git repository of Wine binaries
> that's only 26 gigabytes in size. Regression testing with binaries i
Am 18.10.2011 10:45, schrieb Damjan Jovanovic:
> This tool compiled all 35000 or so commits from Wine 1.0 to around 4th
> October 2011 in only 7 days, generating a Git repository of Wine binaries
> that's only 26 gigabytes in size. Regression testing with binaries is a
> pleasure: it takes only
On Tue, Oct 18, 2011 at 10:26, Dmitry Timoshkov wrote:
> Austin English wrote:
>
>
>> > Reverting a patch in latest git is not always possible, instead it's
>> > a very useful test to revert the patch at the suspected regression point
>> > and see if that really helps.
>>
>> That still doesn't re
Austin English wrote:
> > Reverting a patch in latest git is not always possible, instead it's
> > a very useful test to revert the patch at the suspected regression point
> > and see if that really helps.
>
> That still doesn't require a full regression test, just:
> $ git checkout -f $SHA1SUM
On Tue, Oct 18, 2011 at 09:01, Dmitry Timoshkov wrote:
> Damjan Jovanovic wrote:
>> > Moreover, often users get asked 'does reverting commit ' help? Without
>> > performing a proper regression test it's impossible to asnwer that
>> > question.
>> >
>> >
>> Reverting a commit in the latest git
Damjan Jovanovic wrote:
> > Moreover, often users get asked 'does reverting commit ' help? Without
> > performing a proper regression test it's impossible to asnwer that
> > question.
> >
> >
> Reverting a commit in the latest git is just 1 round of
> patch+configure+make+run, and reverting to
On Tue, Oct 18, 2011 at 2:32 PM, Dmitry Timoshkov wrote:
> Henri Verbeet wrote:
>
> > On 18 October 2011 10:45, Damjan Jovanovic wrote:
> > > (especially during "reverse regression testing"), users find it too
> long and
> > > technical, and only a small minority of regressions are ever bisecte
On Tue, Oct 18, 2011 at 13:42, Damjan Jovanovic wrote:
> If you are talking about using compiling with ccache instead of the binary
> repository, "configure" alone is > 40 seconds
configure -C option can speed it up a lot
Henri Verbeet wrote:
> On 18 October 2011 10:45, Damjan Jovanovic wrote:
> > (especially during "reverse regression testing"), users find it too long and
> > technical, and only a small minority of regressions are ever bisected. And
> Not true. Even for the regressions that are still open it's c
On 18 October 2011 13:42, Damjan Jovanovic wrote:
> There's currently another 182 regressions that were closed "ABANDONED".
> Maybe if regression testing was easier and faster, people wouldn't abandon
> them?
>
Maybe. That's 182 closed ABANDONED, out of 2590 total closed, so
that's on the order of
Exciting!
On 10/18/2011 01:45 AM, Damjan Jovanovic wrote:
> I haven't figured out how to make the binaries available to users. Few
> users can clone a 26 gigabyte repository, and even fewer places can
> serve that much to multiple users. Maybe Git can compress it further?
> The other idea I had is
On Tue, Oct 18, 2011 at 12:08 PM, Henri Verbeet wrote:
> On 18 October 2011 10:45, Damjan Jovanovic wrote:
> > (especially during "reverse regression testing"), users find it too long
> and
> > technical, and only a small minority of regressions are ever bisected.
> And
> Not true. Even for the
On 18 October 2011 10:45, Damjan Jovanovic wrote:
> (especially during "reverse regression testing"), users find it too long and
> technical, and only a small minority of regressions are ever bisected. And
Not true. Even for the regressions that are still open it's currently
276 bisected vs. 99 no
On Tue, Oct 18, 2011 at 10:45 AM, Damjan Jovanovic wrote:
> Hi
>
> Since the beginning, I've had issues with regression testing. Despite the
> fact it's very useful, it takes forever, it's easy to make a mistake
> (especially during "reverse regression testing"), users find it too long and
> techn
Erich Hoover wrote:
> On Sun, Aug 16, 2009 at 1:10 PM, James McKenzie
> mailto:jjmckenzi...@earthlink.net>> wrote:
>
> Looks like a patch to 0.9.61 broke the EM_FORMATRANGE patch that I was
> working on. I've received guidance from Dylan Smith on how to
> redo the
> patch and I wil
On Sun, Aug 16, 2009 at 2:10 PM, James
McKenzie wrote:
> Looks like a patch to 0.9.61 broke the EM_FORMATRANGE patch that I was
> working on. I've received guidance from Dylan Smith on how to redo the
> patch and I will once I get the old patch working with 1.0.
>
> Guidance on how to use git to r
On Sun, Aug 16, 2009 at 1:10 PM, James McKenzie
wrote:
> Looks like a patch to 0.9.61 broke the EM_FORMATRANGE patch that I was
> working on. I've received guidance from Dylan Smith on how to redo the
> patch and I will once I get the old patch working with 1.0.
>
> Guidance on how to use git to
James Hawkins wrote:
>
> On Nov 17, 2007, at 6:24 AM, Paul Vriens <[EMAIL PROTECTED]>
> wrote:
>
>> Hi,
>>
>> I've opened a bug (which if fixed now btw) and the regression
>> testing page at
>> http://wiki.winehq.org/RegressionTesting said "Also be sure to add
>> the author of
>> the patch
On Nov 17, 2007, at 6:24 AM, Paul Vriens <[EMAIL PROTECTED]>
wrote:
> Hi,
>
> I've opened a bug (which if fixed now btw) and the regression
> testing page at
> http://wiki.winehq.org/RegressionTesting said "Also be sure to add
> the author of
> the patch to the CC".
>
> So this is what I d
On Nov 17, 2007 3:44 PM, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote:
>
> "Paul Vriens" <[EMAIL PROTECTED]> wrote:
>
> > I've opened a bug (which if fixed now btw) and the regression testing page
> > at
> > http://wiki.winehq.org/RegressionTesting said "Also be sure to add the
> > author of
> > th
"Paul Vriens" <[EMAIL PROTECTED]> wrote:
> I've opened a bug (which if fixed now btw) and the regression testing page at
> http://wiki.winehq.org/RegressionTesting said "Also be sure to add the author
> of
> the patch to the CC".
>
> So this is what I did.
>
> Should that line be removed from
Louis. Lenders wrote:
Hi, i tried to do a regression test for a bug (bug
4370)
I also got very confused by the dates used in CVS and wine-cvs list.
The CVS time is the time of Minneapolis. The commit message is in CET
(UTC+1). You can see the +1 is in the Date field of the email.
I would recom
On Thu, 2 Oct 2003, Ferenc Wagner wrote:
> now, so would be slow. Shall I go into it or have you
> already done this during your lunchtime?
I've started last night, but I've put it on the backburner
'cause I wanted to finish the BINRES stuff. Today my g/f
& myself are celebrating our 2nd anivers
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes:
> On Thu, 2 Oct 2003, Jakob Eriksson wrote:
>
>> The feature requests come in faster now and I also have
>> less time to work on this stuff for the moment, so I
>> release my little baby into the wild:
>
> Cool, thanx! It needs to be integrated with t
On Thu, 2 Oct 2003, Jakob Eriksson wrote:
> The feature requests come in faster now and I also have less time
> to work on this stuff for the moment, so I release my little baby into
> the wild:
Cool, thanx! It needs to be integrated with the rest of the wine build
system, maybe a bit of cleanup,
40 matches
Mail list logo