Re: [cmake-developers] Perforce Patch for CTest

2013-10-24 Thread Brad King
On 10/24/2013 03:11 AM, Rolf Eike Beer wrote: CMake/Source/CTest/cmCTestP4.cxx: In member function ‘virtual void cmCTestP4::LoadRevisions()’: CMake/Source/CTest/cmCTestP4.cxx:469:32: warning: conversion to ‘int’ from ‘std::vectorstd::basic_stringchar ::size_type {aka long unsigned int}’

Re: [cmake-developers] Perforce Patch for CTest

2013-10-24 Thread Brad King
On 10/24/2013 08:17 AM, Brad King wrote: Also std::size_t does not work on VS 6. Both fixed: Also a couple fixes to the test: CTest.UpdateP4: Fix test when p4 client is not in PATH http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ee51ec64eb CTest.UpdateP4: Run test in directory with space

Re: [cmake-developers] Perforce Patch for CTest

2013-10-24 Thread Brad King
On 10/24/2013 03:57 PM, Pedro Navarro wrote: That's right, p4 usually doesn't create a .p4 file I think it is fine for the test to not place .p4 files since that is representative of real use cases. Ideally each VCS implementation could have a way to tell CTest if a directory it's under that

Re: [cmake-developers] Perforce Patch for CTest

2013-10-23 Thread Pedro Navarro
Thanks a lot! Glad we could contribute. What's the process for changes? :) Adding support for P4Web in CDash made me realize that maybe we need to change how revisions are reported in Update.xml (file revisions instead of changelists), I'm looking into that right now. Pedro On Wed, Oct 23,

Re: [cmake-developers] Perforce Patch for CTest

2013-10-22 Thread Brad King
On 10/22/2013 02:51 PM, Pedro Navarro wrote: get_filename_component(TOP ${CMAKE_CURRENT_LIST_FILE} PATH) could be written as CMAKE_CURRENT_LIST_DIR. I don't remember exactly when it was introduced, but you drive that test with the newly built CMake so this must work. And a newline is missing

Re: [cmake-developers] Perforce Patch for CTest

2013-10-22 Thread Rolf Eike Beer
Am Dienstag, 22. Oktober 2013, 11:51:52 schrieb Pedro Navarro: I would extend the regex in the DiffParser constructor to contain - at the end to make the propability that a filename with # in it would cause issues smaller. Also I find the usage of both Options and options in

Re: [cmake-developers] Perforce Patch for CTest

2013-10-22 Thread Pedro Navarro
Oh, I see. Sure, I can see how that could become easily a hard to debug problem. On Tue, Oct 22, 2013 at 12:08 PM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 22. Oktober 2013, 11:51:52 schrieb Pedro Navarro: I would extend the regex in the DiffParser constructor to contain - at

Re: [cmake-developers] Perforce Patch for CTest

2013-10-22 Thread Pedro Navarro
Attached is the new patch with Eike's recommendations. Pedro From d291fde15c8e94ec5c9b93f96714554acf706d02 Mon Sep 17 00:00:00 2001 From: Pedro Navarro pnava...@netflix.com Date: Tue, 1 Oct 2013 18:49:47 -0700 Subject: [PATCH] Perforce support for CTest --- Modules/CTest.cmake

Re: [cmake-developers] Perforce Patch for CTest

2013-10-22 Thread Pedro Navarro
Good point :) Here's the new patch. GetWorkingRevision returns 0 instead of empty now, eliminating the need to do the check in NoteOldRevision and NoteNewRevision Pedro On Tue, Oct 22, 2013 at 2:49 PM, Rolf Eike Beer e...@sf-mail.de wrote: Am Dienstag, 22. Oktober 2013, 14:36:36 schrieb Pedro

Re: [cmake-developers] Perforce Patch for CTest

2013-10-21 Thread Pedro Navarro
Attached is the latest version of the Perforce support patch for CTest. I've added a test (CTest.UpdateP4) that launches a Perforce server listening on a custom port and performs the same operations as other VCS tools. Some release notes: - Unix is expected. Windows could work (it's a matter

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Pedro Navarro
Ok, I have the patch working and I'm going to send it soon. One question, is it possible to launch a detached process from within CMake? If I use EXECUTE_PROCESS to start p4d, CMake waits for it to finish so -for now- I'm launching the Perforce daemon outside CMake. Pedro On Wed, Oct 16, 2013

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Bill Hoffman
On 10/17/2013 1:52 PM, Pedro Navarro wrote: Ok, I have the patch working and I'm going to send it soon. One question, is it possible to launch a detached process from within CMake? If I use EXECUTE_PROCESS to start p4d, CMake waits for it to finish so -for now- I'm launching the Perforce daemon

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Brad King
On 10/17/2013 02:18 PM, Bill Hoffman wrote: On 10/17/2013 1:52 PM, Pedro Navarro wrote: Ok, I have the patch working and I'm going to send it soon. One question, is it possible to launch a detached process from within CMake? If I use EXECUTE_PROCESS to start p4d, CMake waits for it to finish

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Pedro Navarro
I experimented with nohup but from inside a shell script that was being executed from execute_process, but that didn't work. I'll give that a try, thanks! There happens to be a way to cleanly shutdown perforce, executing p4 admin stop, so this could mean that we can start p4d if it's present and

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Brad King
On 10/17/2013 03:23 PM, Pedro Navarro wrote: I experimented with nohup but from inside a shell script that was being executed from execute_process, but that didn't work. You also need to disconnect the stdout/stderr pipes by redirecting them to /dev/null. Then execute_process can fully let go

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Bill Hoffman
On 10/17/2013 4:59 PM, Brad King wrote: As I explained in a sibling response the KWSys Process library has support for creating detached processes. It should only be a matter of exposing that through execute_process command options. +1, this does come up a lot. It would be good to have this

Re: [cmake-developers] Perforce Patch for CTest

2013-10-17 Thread Matthew Woehlke
On 2013-10-17 16:59, Brad King wrote: On 10/17/2013 04:56 PM, Rolf Eike Beer wrote: We should think if this should be something that is needed. Running some sort of background process is a common pattern for all sorts of tests. Often really detaching is not needed, It is usually sufficient to

Re: [cmake-developers] Perforce Patch for CTest

2013-10-16 Thread Brad King
On 10/15/2013 07:39 PM, Pedro Navarro wrote: That's exactly my point. Is it ok to rely on environment variables (P4PORT, P4HOST), ie, expect the build machine to be set up in a way before running the tests or are those values passed in some kind of configuration file, added to the CMake

Re: [cmake-developers] Perforce Patch for CTest

2013-10-16 Thread Pedro Navarro
Sounds good. Those environment variables are read automatically by Perforce's command line tools, so there's nothing to do on the test's end then. Pedro On Wed, Oct 16, 2013 at 5:23 AM, Brad King brad.k...@kitware.com wrote: On 10/15/2013 07:39 PM, Pedro Navarro wrote: That's exactly my

Re: [cmake-developers] Perforce Patch for CTest

2013-10-15 Thread Pedro Navarro
Hi! I have the test succesfully running using the provided framework for CTestUpdate, so I have a new CTest.UpdateP4 test. Right now it runs against a local p4d server instance that you can download for free from Perforce. I'm imagining that, depending on the testing machine, we might need to be

Re: [cmake-developers] Perforce Patch for CTest

2013-10-15 Thread Matthew Woehlke
On 2013-10-15 18:44, Pedro Navarro wrote: I'm imagining that, depending on the testing machine, we might need to be able to specify where the perforce server is located, if it's not the local machine (using either a command line switch or an environment variable). Is there any infrastructure for

Re: [cmake-developers] Perforce Patch for CTest

2013-10-14 Thread Pedro Navarro
I'm developing the test, working against Perforce's free 20 user server. What's the procedure build and run the test from a CMake source build? Thanks! PEdro On Thu, Oct 10, 2013 at 1:40 PM, Pedro Navarro pnava...@netflix.com wrote: I saw that and I thought that was meant for Eike. Ok I'll

Re: [cmake-developers] Perforce Patch for CTest

2013-10-14 Thread Brad King
On 10/14/2013 2:41 PM, Pedro Navarro wrote: I'm developing the test, working against Perforce's free 20 user server. What's the procedure build and run the test from a CMake source build? In the build tree run bin/ctest -R CTest.UpdateP4 assuming you've modified Tests/CMakeLists.txt

[cmake-developers] Perforce Patch for CTest

2013-10-10 Thread Pedro Navarro
Hi guys, just checking: am I expected to do anything else with the P4 patch or is it now in your hands and will eventually be integrated? Thanks! Pedro -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep

Re: [cmake-developers] Perforce Patch for CTest

2013-10-10 Thread Brad King
On 10/10/2013 04:01 PM, Pedro Navarro wrote: Hi guys, just checking: am I expected to do anything else with the P4 patch or is it now in your hands and will eventually be integrated? As requested here: http://thread.gmane.org/gmane.comp.programming.tools.cmake.devel/8085/focus=8098 the

Re: [cmake-developers] Perforce Patch for CTest

2013-10-10 Thread Pedro Navarro
I saw that and I thought that was meant for Eike. Ok I'll work on the test cases and I'll see what I can do about the nightly dashboard submissions. Pedro On Thu, Oct 10, 2013 at 1:14 PM, Brad King brad.k...@kitware.com wrote: On 10/10/2013 04:01 PM, Pedro Navarro wrote: Hi guys, just

Re: [cmake-developers] Perforce patch for CTest

2013-10-03 Thread Brad King
On 10/02/2013 06:00 PM, Pedro Navarro wrote: Attached is a new patch with Rolf's suggestions (improved regex and usage of size_type to go through the Options vector). Thanks. (BTW, he goes by Eike.) I just amended my commit and created a new patch file, instead of doing two smaller ones.

Re: [cmake-developers] Perforce patch for CTest

2013-10-03 Thread Pedro Navarro
We deployed CTest today on our production machine and found an off by one error when describing changelists. I've updated the patch and attached it to this mail. Other than that, we have ctest running here with no problems! Pedro On Thu, Oct 3, 2013 at 10:19 AM, Brad King brad.k...@kitware.com

Re: [cmake-developers] Perforce patch for CTest

2013-10-02 Thread Rolf Eike Beer
Am Mittwoch, 2. Oktober 2013, 13:10:20 schrieb Pedro Navarro: - It requires an English version of Perforce (use the P4_OPTIONS variable, documented below to pass the -L switch to change the message language if you installation has a different one). It shouldn't be too

Re: [cmake-developers] Perforce patch for CTest

2013-10-02 Thread Pedro Navarro
The issue with the P4LANGUAGE environment variable, as well as the -L switch is that I don't know the language string I need to set it to. Another thing is that Perforce says that it will change the text of the error messages, so it's not clear if the ouput I'm parsing will be affected or not. I

Re: [cmake-developers] Perforce patch for CTest

2013-10-02 Thread Pedro Navarro
Attached is a new patch with Rolf's suggestions (improved regex and usage of size_type to go through the Options vector). I just amended my commit and created a new patch file, instead of doing two smaller ones. Pedro On Wed, Oct 2, 2013 at 2:28 PM, Pedro Navarro pnava...@netflix.com wrote:

Re: [cmake-developers] Perforce patch for CTest 2.8

2013-10-01 Thread Brad King
On 09/30/2013 08:36 PM, Pedro Navarro wrote: I've written a patch to add Perforce support for CTest 2.8. Although it still needs a little bit more work (I need to look into what I'm supposed to do with Nightly builds ) it properly notifies CTest of all details about check ins, revision