[ros-dev] Windows Server 2003 Testbot is live!

2015-03-01 Thread Colin Finck
Hi all,

After a long, long time, we finally have a Testbot regularly running our
Wine tests and API tests under our target platform Windows Server 2003.
The VM is actually based on Windows Home Server, which is a cheap
Windows Server 2003 SP2 edition.

The first successful test results are here:
https://reactos.org/sites/all/modules/reactos/testman/compare.php?ids=34839

Okay, I have to admit this already required manual intervention. Test
msi:install reproducibly hangs with the error message "The process
cannot access the file because another process has locked a portion of
the file".

I expect all of this to still need some tweaking here and there. Please
reply to this mail with all your tweaking suggestions and I see what I
can do.


Have fun,

Colin




smime.p7s
Description: S/MIME Cryptographic Signature
___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

[ros-dev] Cant log in jira

2015-03-01 Thread Alexander Rechitskiy
 Cant log in jira -- С уважением, Alexander Rechitskiy+79286331900   

___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] Cant log in jira

2015-03-01 Thread Aleksey Bragin

I can.

Regards,
Aleksey

On 01.03.2015 15:20, Alexander Rechitskiy wrote:

Cant log in jira
--
С уважением,
Alexander Rechitskiy
+79286331900




___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] Cant log in jira

2015-03-01 Thread Pierre Schweitzer
We've faced an incident on the LDAP server this morning.

It has been solved at 1:04PM CEST.

On 01/03/2015 13:27, Aleksey Bragin wrote:
> I can.
> 
> Regards,
> Aleksey
> 
> On 01.03.2015 15:20, Alexander Rechitskiy wrote:
>> Cant log in jira
>> -- 
>> С уважением,
>> Alexander Rechitskiy
>> +79286331900
>>
> 
> 
> ___
> Ros-dev mailing list
> Ros-dev@reactos.org
> http://www.reactos.org/mailman/listinfo/ros-dev


-- 
Pierre Schweitzer 
System & Network Administrator
Senior Kernel Developer
ReactOS Deutschland e.V.



smime.p7s
Description: S/MIME Cryptographic Signature
___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] Windows Server 2003 Testbot is live!

2015-03-01 Thread Hermès BÉLUSCA - MAÏTO
Hi! That's very nice! I'm however wondering what all those failed (or crashed) 
tests are...

Hermès.

-Message d'origine-
De : Ros-dev [mailto:ros-dev-boun...@reactos.org] De la part de Colin Finck
Envoyé : dimanche 1 mars 2015 11:46
À : 'ReactOS Development List'
Objet : [ros-dev] Windows Server 2003 Testbot is live!

Hi all,

After a long, long time, we finally have a Testbot regularly running our Wine 
tests and API tests under our target platform Windows Server 2003.
The VM is actually based on Windows Home Server, which is a cheap Windows 
Server 2003 SP2 edition.

The first successful test results are here:
https://reactos.org/sites/all/modules/reactos/testman/compare.php?ids=34839

Okay, I have to admit this already required manual intervention. Test 
msi:install reproducibly hangs with the error message "The process cannot 
access the file because another process has locked a portion of the file".

I expect all of this to still need some tweaking here and there. Please reply 
to this mail with all your tweaking suggestions and I see what I can do.


Have fun,

Colin



___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [hbelusca] 66538: [SHLWAPI]: Remove some Wine madness. CORE-8936.

2015-03-01 Thread Thomas Faber
Hmm what's the point of this? If it doesn't break anything, let's not
create a ROS-diff?


On 2015-03-02 02:15, hbelu...@svn.reactos.org wrote:
> Author: hbelusca
> Date: Mon Mar  2 01:15:00 2015
> New Revision: 66538
> 
> URL: http://svn.reactos.org/svn/reactos?rev=66538&view=rev
> Log:
> [SHLWAPI]: Remove some Wine madness. CORE-8936.
> 
> Modified:
> trunk/reactos/dll/win32/shlwapi/path.c
> 
> Modified: trunk/reactos/dll/win32/shlwapi/path.c
> URL: 
> http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shlwapi/path.c?rev=66538&r1=66537&r2=66538&view=diff
> ==
> --- trunk/reactos/dll/win32/shlwapi/path.c[iso-8859-1] (original)
> +++ trunk/reactos/dll/win32/shlwapi/path.c[iso-8859-1] Mon Mar  2 
> 01:15:00 2015
> @@ -21,22 +21,7 @@
>  
>  #include "precomp.h"
>  
> -/* Get a function pointer from a DLL handle */
> -#define GET_FUNC(func, module, name, fail) \
> -  do { \
> -if (!func) { \
> -  if (!SHLWAPI_h##module && !(SHLWAPI_h##module = LoadLibraryA(#module 
> ".dll"))) return fail; \
> -  func = (fn##func)GetProcAddress(SHLWAPI_h##module, name); \
> -  if (!func) return fail; \
> -} \
> -  } while (0)
> -
> -/* DLL handles for late bound calls */
> -static HMODULE SHLWAPI_hshell32;
> -
> -/* Function pointers for GET_FUNC macro; these need to be global because of 
> gcc bug */
> -typedef BOOL (WINAPI *fnpIsNetDrive)(int);
> -static  fnpIsNetDrive pIsNetDrive;
> +int WINAPI IsNetDrive(int drive);
>  
>  HRESULT WINAPI SHGetWebFolderFilePathW(LPCWSTR,LPWSTR,DWORD);
>  
> @@ -3699,8 +3684,7 @@
>dwDriveNum = PathGetDriveNumberA(lpszPath);
>if (dwDriveNum == -1)
>  return FALSE;
> -  GET_FUNC(pIsNetDrive, shell32, (LPCSTR)66, FALSE); /* ord 66 = 
> shell32.IsNetDrive */
> -  return pIsNetDrive(dwDriveNum);
> +  return IsNetDrive(dwDriveNum);
>  }
>  
>  /*
> @@ -3721,8 +3705,7 @@
>dwDriveNum = PathGetDriveNumberW(lpszPath);
>if (dwDriveNum == -1)
>  return FALSE;
> -  GET_FUNC(pIsNetDrive, shell32, (LPCSTR)66, FALSE); /* ord 66 = 
> shell32.IsNetDrive */
> -  return pIsNetDrive(dwDriveNum);
> +  return IsNetDrive(dwDriveNum);
>  }
>  
>  /*
> 
> 


___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev


Re: [ros-dev] Windows Server 2003 Testbot is live!

2015-03-01 Thread Thomas Faber
Broken tests is what they are.
For the most part, anyway.

On 2015-03-02 02:37, Hermès BÉLUSCA - MAÏTO wrote:
> Hi! That's very nice! I'm however wondering what all those failed (or 
> crashed) tests are...
> 
> Hermès.
> 
> -Message d'origine-
> De : Ros-dev [mailto:ros-dev-boun...@reactos.org] De la part de Colin Finck
> Envoyé : dimanche 1 mars 2015 11:46
> À : 'ReactOS Development List'
> Objet : [ros-dev] Windows Server 2003 Testbot is live!
> 
> Hi all,
> 
> After a long, long time, we finally have a Testbot regularly running our Wine 
> tests and API tests under our target platform Windows Server 2003.
> The VM is actually based on Windows Home Server, which is a cheap Windows 
> Server 2003 SP2 edition.
> 
> The first successful test results are here:
> https://reactos.org/sites/all/modules/reactos/testman/compare.php?ids=34839
> 
> Okay, I have to admit this already required manual intervention. Test 
> msi:install reproducibly hangs with the error message "The process cannot 
> access the file because another process has locked a portion of the file".
> 
> I expect all of this to still need some tweaking here and there. Please reply 
> to this mail with all your tweaking suggestions and I see what I can do.
> 
> 
> Have fun,
> 
> Colin

___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev