Re: mountmgr.sys not running on OpenBSD - depends on dbus/hal, or a timing issue?

2010-03-08 Thread Austin English
On Wed, Mar 3, 2010 at 1:59 PM, Ken Thomases wrote: > On Mar 3, 2010, at 12:12 PM, Austin English wrote: > >> The main question I have though, is that I can't get winetest to run >> there. When I run ./wine winetest or ./wine winetest-latest.exe, >> winetest begins to load, then bails out, saying

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Vitaliy Margolen
Hey guys, would you stop spamming wine-patches? Please never replay to wine-patches. Vitaliy.

re: GSoC WPKG and test.winehq.org

2010-03-08 Thread Dan Kegel
> Converting the wpkg scripts to appinstall doesn't > seem like that difficult of a task, mostly just time consuming. It's harder than it sounds to actually get a few useful app tests written. Plus there'll be some work writing up and fixing the bugs it uncovers. > That is why I thinking working

measuring audio latency?

2010-03-08 Thread Dan Kegel
Hey folks, before Maarten goes and implements wine audio on top of OpenAL, does anyone know of a nice automated tool for measuring audio latency that works on multiple APIs? i.e. it'd be cool if one could plug in a loopback cable, run an app once, and get a report of the round trip audio latency w

re: cmd: added some expansion tests.

2010-03-08 Thread Dan Kegel
> + at pwd@ Shouldn't that be "@pwd@" ?

re: cmd: fixed use of uninitialised memory in WCMD_expand_envvar() (valgrind).

2010-03-08 Thread Dan Kegel
Wouldn't it be easier to pass -1 for the length?

Re: [PATCH] kernel32: added some basic tests for CompareString().

2010-03-08 Thread Henri Verbeet
On 8 March 2010 22:25, Yann Droneaud wrote: > While trying to debug cmd.exe, valgrind found some problem in > CompareString() calls. Those tests help me to understand how > CompareString() is excepted to be called: > when string length is given NUL characters are ignored in this string. > I think

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Stefan Dösinger
Am 08.03.2010 um 22:51 schrieb Ben Klein: >> Some cards are sold with "enabled special feature X in game Y". The game >> then looks at the card ID to allow additional configuration options. An >> example for this is Age of Empires 3 which allows the highest graphics >> options only for some Gef

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Roderick Colenbrander
On Mon, Mar 8, 2010 at 10:40 PM, Stefan Dösinger wrote: > > Am 08.03.2010 um 14:21 schrieb Roderick Colenbrander: > >> Hi Luke, >> >> We don't want to have all possible GPU models in (there are so many >> different models). It only gives a hint to apps (yes the proper amount >> of video memory is

Winetest.exe could mess up your secured wireless access on Windows

2010-03-08 Thread Paul Vriens
Hi, If you never run winetest you can skip this email but shame on you ;) It turns out that one of the advapi32 tests messes up the registry, or to be more correct doesn't restore an original value. This bug has been present since the introduction of these specific tests in 2004. This means

Re: rsaenh(2/6): Add support for SHA-256, SHA-384, and SHA-512

2010-03-08 Thread Juan Lang
> Is the patch missing some files? Damn, yes. I thought "git am" would be clever enough to handle that, but apparently not. Thanks. --Juan

Re: rsaenh(2/6): Add support for SHA-256, SHA-384, and SHA-512

2010-03-08 Thread Henri Verbeet
On 8 March 2010 22:36, Juan Lang wrote: > Uses implementation from Aaron Gifford, > http://www.aarongifford.com/computers/sha.html  (It's BSD licensed.) > Is the patch missing some files?

Re: Wiki - 3D driver issues

2010-03-08 Thread Roderick Colenbrander
On Mon, Mar 8, 2010 at 10:41 PM, Stefan Dösinger wrote: > > Am 08.03.2010 um 13:23 schrieb Roderick Colenbrander: > >> Hi, >> >> Multiple times a day you encounter people who can't get 3D working in >> Wine. I'm getting so sick of these questions, that I decided to start >> a new page on the Wiki.

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Ben Klein
On 9 March 2010 08:40, Stefan Dösinger wrote: > > Am 08.03.2010 um 14:21 schrieb Roderick Colenbrander: > >> Hi Luke, >> >> We don't want to have all possible GPU models in (there are so many >> different models). It only gives a hint to apps (yes the proper amount >> of video memory is more serio

Re: Wiki - 3D driver issues

2010-03-08 Thread Stefan Dösinger
Am 08.03.2010 um 13:23 schrieb Roderick Colenbrander: > Hi, > > Multiple times a day you encounter people who can't get 3D working in > Wine. I'm getting so sick of these questions, that I decided to start > a new page on the Wiki. > http://wiki.winehq.org/3DDriverIssues > > Feel free to add mo

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Stefan Dösinger
Am 08.03.2010 um 14:21 schrieb Roderick Colenbrander: > Hi Luke, > > We don't want to have all possible GPU models in (there are so many > different models). It only gives a hint to apps (yes the proper amount > of video memory is more serious) but this should be fixed in a > different way I thi

Re: [spam-high] RE: Significant performance "regression"

2010-03-08 Thread Erich Hoover
On Fri, Feb 26, 2010 at 11:31 AM, Erich Hoover wrote: > I was looking into updating the AppDB with more recent results for PCB > Artist* and discovered that on a fresh Wine install that the application > opens and creates new files incredibly slowly (it now takes 23 minutes vs. > old performance

Re: Re[2]: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 6]

2010-03-08 Thread Juan Lang
+    expected = 33; sprintf(fileA, testfile, tmpdir); +    rc=shell_execute(NULL, fileA, NULL, NULL); +    todo_wine { +        ok(rc==expected || (rc>32&&  expected>32), +            "expected %s (%d), got %s (%d), lpFile: %s \n", +            expected==33 ? "success"

Re[2]: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 6]

2010-03-08 Thread Ilya Basin
PV> On 03/08/2010 05:42 PM, Juan Lang wrote: >> Hi Ilya, >> I like this one rather better, thanks. Especially the use of broken() >> makes it clearer what's happening. >> >> I think you could tidy it up just a little more: >> >>> +expected = 33; sprintf(fileA, testfile, tmpdir); >>> +rc=sh

Re: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 4]

2010-03-08 Thread Paul Vriens
On 03/08/2010 05:40 PM, Ilya Basin wrote: JL> Also, those TEST_LPFILE_PARSED_OK macros are ugly, and hard to fix if JL> one place has a certain behavior, while another has different JL> behavior. Just use ok directly wherever you're using the macro. Not convinced. What you say is good for

Re: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 6]

2010-03-08 Thread Paul Vriens
On 03/08/2010 05:42 PM, Juan Lang wrote: Hi Ilya, I like this one rather better, thanks. Especially the use of broken() makes it clearer what's happening. I think you could tidy it up just a little more: +expected = 33; sprintf(fileA, testfile, tmpdir); +rc=shell_execute(NULL, fileA,

Re: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 6]

2010-03-08 Thread Juan Lang
Hi Ilya, I like this one rather better, thanks. Especially the use of broken() makes it clearer what's happening. I think you could tidy it up just a little more: > +    expected = 33; sprintf(fileA, testfile, tmpdir); > +    rc=shell_execute(NULL, fileA, NULL, NULL); > +    todo_wine { > +    

Re[2]: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 4]

2010-03-08 Thread Ilya Basin
>> JL> Also, those TEST_LPFILE_PARSED_OK macros are ugly, and hard to fix if >> JL> one place has a certain behavior, while another has different >> JL> behavior. Just use ok directly wherever you're using the macro. >> Not convinced. What you say is good for reading, but not editing. >> If som

Re: shell32/tests: add tests for the parser of SHELLEXECUTEINFO.lpFile [try 4]

2010-03-08 Thread Paul Vriens
On 03/06/2010 07:00 PM, Ilya Basin wrote: JL> Also, those TEST_LPFILE_PARSED_OK macros are ugly, and hard to fix if JL> one place has a certain behavior, while another has different JL> behavior. Just use ok directly wherever you're using the macro. Not convinced. What you say is good for rea

Re: wined3d: Add Nvidia 8800GTX detection

2010-03-08 Thread Roderick Colenbrander
Hi Luke, We don't want to have all possible GPU models in (there are so many different models). It only gives a hint to apps (yes the proper amount of video memory is more serious) but this should be fixed in a different way I think e.g. nv-control. I think I might look into that again soon. Rode

Wiki - 3D driver issues

2010-03-08 Thread Roderick Colenbrander
Hi, Multiple times a day you encounter people who can't get 3D working in Wine. I'm getting so sick of these questions, that I decided to start a new page on the Wiki. http://wiki.winehq.org/3DDriverIssues Feel free to add more information to it. I don't want it to give detailed instructions on h

Re: [PATCH 1/4] WCMD_run_program overflow fix

2010-03-08 Thread Paul Vriens
On 03/07/2010 09:46 PM, Eric Ho wrote: --- a/programs/cmd/tests/test_builtins.cmd.exp +++ b/programs/cmd/tests/test_builtins.cmd.exp @@ -24,3 +24,9 @@ Testing case sensitivity with and without /i option if seems to default to case sensitivity if /i seems to work if /I seems to work +---