You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Ramya R (JIRA)" <ji...@apache.org> on 2008/09/15 17:37:46 UTC

[jira] Created: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

TestProcfsBasedProcessTree failing on Windows machine
-----------------------------------------------------

                 Key: HADOOP-4173
                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
             Project: Hadoop Core
          Issue Type: Bug
          Components: util
         Environment: Windows
            Reporter: Ramya R
             Fix For: 0.19.0


TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
    [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
    [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
    [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
    [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Attachment: HADOOP-4173-20080923.txt

For tasks' memory management feature, we read proc file system for finding the running processes and reading their stat files. Linux programs access procfs via VFS, but windows programs can access cygwin's procfs only if they work directly under cygwin(i.e. talk to cygwin dll). The current problem arises because of the inability of a windows java application(which, once started, runs outside cygwin environment) to read proc file-system.  My earlier sanity checks for determining procfs availibilty on Windows/cygwin were just limited to the command line and not included external programs, so couldn't catch this problem earlier.

So, for now, I am attaching a patch to disable the feature completely on Windows/Cygwin, and let it run only on Linux. Later, we can try including this feature by changing - how we get list of processes(run a cygwin "ls" on /proc) and how we get each process' information (run a cygwin "cat" on each process, costly?).

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12633684#action_12633684 ] 

Vinod K V commented on HADOOP-4173:
-----------------------------------

bq. Both TestProcfsBasedProcessTree and TestTaskTrackerMemoryManager ran to successful completion with the above patch.
Ran to successful completion on both Linux and Windows.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Attachment: HADOOP-4173-20080924.1.txt

Javadoc needs updation, as Hemanth pointed out. Fixing javadoc.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634019#action_12634019 ] 

Vinod K V commented on HADOOP-4173:
-----------------------------------

bq. Hudson returned a -1 for contrib tests, though I cannot find any failing contrib test from the console output. Is this a case of HADOOP-4037?
HADOOP-4244

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634223#action_12634223 ] 

Hadoop QA commented on HADOOP-4173:
-----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12390826/HADOOP-4173-20080924.1.txt
  against trunk revision 698385.

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no tests are needed for this patch.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs warnings.

    -1 core tests.  The patch failed core unit tests.

    -1 contrib tests.  The patch failed contrib unit tests.

Test results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3362/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3362/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3362/artifact/trunk/build/test/checkstyle-errors.html
Console output: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3362/console

This message is automatically generated.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Release Note: Fixed the failures in TestProcfsBasedProcessTree and TestTaskTrackerMemoryManager tests. Disabled ProcfsBasedProcessTree on Windows, because of which the memory management feature is also disabled on Windows and works only on Linux.
    Hadoop Flags: [Reviewed]

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Nigel Daley (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nigel Daley updated HADOOP-4173:
--------------------------------

    Component/s: test

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634787#action_12634787 ] 

Vinod K V commented on HADOOP-4173:
-----------------------------------

The patch is reviewed and I've put up the release notes. Raghu, can you please commit this? Thanks!

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Hemanth Yamijala (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634745#action_12634745 ] 

Hemanth Yamijala commented on HADOOP-4173:
------------------------------------------

+1 for the patch. There are no tests in it, because it is only fixing broken tests. I think this can be committed.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Status: Patch Available  (was: Open)

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Status: Open  (was: Patch Available)

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Nigel Daley (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12633753#action_12633753 ] 

Nigel Daley commented on HADOOP-4173:
-------------------------------------

Vinod, "ProcfsBasedProcfsBasedProcessTree" looks like a spelling mistake in the Log message.  Did you test this patch on Windows?

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Tsz Wo (Nicholas), SZE (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634613#action_12634613 ] 

Tsz Wo (Nicholas), SZE commented on HADOOP-4173:
------------------------------------------------

> The contrib tests -1 problem is addressed in HADOOP-4257.

It should be HADOOP-4249, Not HADOOP-4257.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Hemanth Yamijala (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hemanth Yamijala reassigned HADOOP-4173:
----------------------------------------

    Assignee: Vinod K V

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12633837#action_12633837 ] 

Hadoop QA commented on HADOOP-4173:
-----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12390733/HADOOP-4173-20080923.txt
  against trunk revision 698187.

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no tests are needed for this patch.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs warnings.

    -1 core tests.  The patch failed core unit tests.

    -1 contrib tests.  The patch failed contrib unit tests.

Test results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3353/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3353/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3353/artifact/trunk/build/test/checkstyle-errors.html
Console output: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/3353/console

This message is automatically generated.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634012#action_12634012 ] 

Vinod K V commented on HADOOP-4173:
-----------------------------------

Hudson returned a -1 for contrib tests, though I cannot find any failing contrib test from the console output. Is this a case of HADOOP-4037?

The core test failed - org.apache.hadoop.hdfs.TestLeaseRecovery2.testBlockSynchronization is not related to this JIRA. Filed HADOOP-4257.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Robert Chansler (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Chansler updated HADOOP-4173:
------------------------------------

    Release Note:   (was: Fixed the failures in TestProcfsBasedProcessTree and TestTaskTrackerMemoryManager tests. Disabled ProcfsBasedProcessTree on Windows, because of which the memory management feature is also disabled on Windows and works only on Linux.)

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Attachment: HADOOP-4173-20080924.txt

bq. Vinod, "ProcfsBasedProcfsBasedProcessTree" looks like a spelling mistake in the Log message.
Argh... Fixed that. Thanks, Nige.

bq. Did you test this patch on Windows?
Yes, and both the failing tests passed, as I mentioned in my previous comment.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Vinod K V (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vinod K V updated HADOOP-4173:
------------------------------

    Status: Patch Available  (was: Open)

Both TestProcfsBasedProcessTree and TestTaskTrackerMemoryManager ran to successful completion with the above patch. Submitting to Hudson.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Raghu Angadi (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634345#action_12634345 ] 

Raghu Angadi commented on HADOOP-4173:
--------------------------------------

Can this be committed? Thanks.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Raghu Angadi (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634764#action_12634764 ] 

Raghu Angadi commented on HADOOP-4173:
--------------------------------------

Could someone write a realease note?

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12635144#action_12635144 ] 

Hudson commented on HADOOP-4173:
--------------------------------

Integrated in Hadoop-trunk #616 (See [http://hudson.zones.apache.org/hudson/job/Hadoop-trunk/616/])

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Raghu Angadi (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Raghu Angadi updated HADOOP-4173:
---------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

I just committed this. Thanks Vinod!

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-4173) TestProcfsBasedProcessTree failing on Windows machine

Posted by "Tsz Wo (Nicholas), SZE (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-4173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12634182#action_12634182 ] 

Tsz Wo (Nicholas), SZE commented on HADOOP-4173:
------------------------------------------------

> Hudson returned a -1 for contrib tests, though I cannot find any failing contrib test from the console output. Is this a case of HADOOP-4037? 

The contrib tests -1 problem is addressed in HADOOP-4257.

> TestProcfsBasedProcessTree failing on Windows machine
> -----------------------------------------------------
>
>                 Key: HADOOP-4173
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4173
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: test, util
>         Environment: Windows
>            Reporter: Ramya R
>            Assignee: Vinod K V
>             Fix For: 0.19.0
>
>         Attachments: HADOOP-4173-20080923.txt, HADOOP-4173-20080924.1.txt, HADOOP-4173-20080924.txt
>
>
> TestProcfsBasedProcessTree unit test is failing on Windows. Here is the output:
>     [junit] Running org.apache.hadoop.util.TestProcfsBasedProcessTree
>     [junit] 2008-09-14 21:39:24,354 INFO  util.TestProcfsBasedProcessTree (TestProcfsBasedProcessTree.java:testProcessTree(121)) - Root process pid: 5512
>     [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0.609 sec
>     [junit] Test org.apache.hadoop.util.TestProcfsBasedProcessTree FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.