[jira] [Updated] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails with IBM JAVA ..

2013-04-10 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-5136:
---

Summary: TestJobImpl-testJobNoTasks fails with IBM JAVA ..  (was: 
TestJobImpl-testJobNoTasks fails ..)

 TestJobImpl-testJobNoTasks fails with IBM JAVA ..
 --

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails with IBM JAVA ..

2013-04-10 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13627914#comment-13627914
 ] 

Amir Sanjar commented on MAPREDUCE-5136:


Billi, I assumed the intended testcase in branch_1 was TestJobHistory, was that 
correct? All JUnit tests, including validateJobHistoryFileContent() passed 
successfully with IBM JAVA.


 TestJobImpl-testJobNoTasks fails with IBM JAVA ..
 --

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails ..

2013-04-09 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13626522#comment-13626522
 ] 

Amir Sanjar commented on MAPREDUCE-5136:


do we know into which build (release) this patch will be included? This patch 
is needed for IBM JAVA . thanks 

 TestJobImpl-testJobNoTasks fails ..
 

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails ..

2013-04-09 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13626625#comment-13626625
 ] 

Amir Sanjar commented on MAPREDUCE-5136:


sure Billie, I will try that.


 TestJobImpl-testJobNoTasks fails ..
 

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails ..

2013-04-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-5136:
---

Attachment: (was: HADOOP-9465.patch)

 TestJobImpl-testJobNoTasks fails ..
 

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar

 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails ..

2013-04-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-5136:
---

Attachment: MAPREDUCE-5136.patch

 TestJobImpl-testJobNoTasks fails ..
 

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-5136) TestJobImpl-testJobNoTasks fails ..

2013-04-08 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5136?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13625772#comment-13625772
 ] 

Amir Sanjar commented on MAPREDUCE-5136:


patch uploaded 

 TestJobImpl-testJobNoTasks fails ..
 

 Key: MAPREDUCE-5136
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5136
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 2.0.3-alpha
 Environment: Linux + IBM JAVA 6
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-5136.patch


 I am not sure if this is a testcase or a design issue. During execution of 
 TestJobImpl-testJobNoTasks() there is an assertion made based on the order 
 of key/value pairs stored in adjacency list. However adjacency list was 
 created by Configuration-getValByRegex() as a HashMap (order is not 
 guaranteed):
 Testcase:
 JobSubmittedEventHandler jseHandler = new 
 JobSubmittedEventHandler(testId,
 testName, testNodeName, \key2\=\value2\ \key1\=\value1\ 
 );


 try {
   Assert.assertTrue(jseHandler.getAssertValue()); ===
 Configuration-getValByRegex():
 public MapString,String getValByRegex(String regex) {
 Pattern p = Pattern.compile(regex);
 MapString,String result = new HashMapString,String(); ===

 as we all know, HashMap makes absolutely no guarantees about the iteration 
 order. It can (and will) even change completely when new elements are added.
 Changing HashMap to LinkedHashMap fixes the ordering inconsistency, however 
 with a small performance side effect. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Priority: Major  (was: Trivial)

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4988-1.1.1.patch


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Priority: Minor  (was: Major)

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
Priority: Minor
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4988-1.1.1.patch


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4988:
--

 Summary: ClusterWithCapacityScheduler and related testcases needs 
to be ported to JUnit4.
 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
 Fix For: 1.1.2


TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
TestCapacitySchedulerWithJobTracker testcases potentially could fail when they 
are build with ant 1.8.4.
Solution:
port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Attachment: MAPREDUCE-4988-1.1.1.patch

fix for hadoop 1.1.1.. working on porting the patch to branch1 and trunck

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4988-1.1.1.patch


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13573775#comment-13573775
 ] 

Amir Sanjar commented on MAPREDUCE-4988:


looks like it has already been fixed in branch1 :) 

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4988-1.1.1.patch


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Priority: Trivial  (was: Major)

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
Priority: Trivial
 Fix For: 1.1.2


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Attachment: (was: MAPREDUCE-4988-1.1.1.patch)

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
Priority: Trivial
 Fix For: 1.1.2


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4988) ClusterWithCapacityScheduler and related testcases needs to be ported to JUnit4.

2013-02-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4988:
---

Attachment: MAPREDUCE-4988-1.1.1.patch

for hadoop 1.1.1 only.. fix is already in branch1

 ClusterWithCapacityScheduler and related testcases needs to be ported to 
 JUnit4.
 

 Key: MAPREDUCE-4988
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4988
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.1, 1.1.2
 Environment: Linux on PPC and x86
Reporter: Amir Sanjar
Priority: Trivial
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4988-1.1.1.patch


 TestJobTrackerRestartWithCS, TestCapacitySchedulerServlet, and 
 TestCapacitySchedulerWithJobTracker testcases potentially could fail when 
 they are build with ant 1.8.4.
 Solution:
 port above testcases and ClusterWithCapacityScheduler class from Junit3 to 
 Junit4.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2013-02-06 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4821?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13573208#comment-13573208
 ] 

Amir Sanjar commented on MAPREDUCE-4821:


Hi Matt, is it too late to request the patch to be included in 1.1.2 release, 
thanks

 Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4
 

 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4821-branch1.patch, 
 MAPREDUCE-4821-release-1.0.3.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4, including:
 * Remove extends TestCase
 * Remove import junit.framework.TestCase;
 * Add import org.junit.*; 
 * Use appropriate annotations such as @After, @Before, @Test.
 uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2013-02-06 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4821:
---

Fix Version/s: 1.1.2

 Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4
 

 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4821-branch1.patch, 
 MAPREDUCE-4821-release-1.0.3.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4, including:
 * Remove extends TestCase
 * Remove import junit.framework.TestCase;
 * Add import org.junit.*; 
 * Use appropriate annotations such as @After, @Before, @Test.
 uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4271) Make TestCapacityScheduler more robust with non-Sun JDK

2013-01-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4271:
---

Fix Version/s: 1.1.1
   Status: Patch Available  (was: Open)

Fixed failure caused by migrating to IBM JAVA on 1.1.1 - 

 Make TestCapacityScheduler more robust with non-Sun JDK
 ---

 Key: MAPREDUCE-4271
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4271
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: capacity-sched
Affects Versions: 1.0.3
Reporter: Luke Lu
Assignee: Yu Gao
  Labels: alt-jdk, capacity
 Fix For: 1.1.1

 Attachments: mapreduce-4271-branch-1.patch, 
 MAPREDUCE-4271-branch1-v2.patch, test-afterepatch.result, 
 test-beforepatch.result, test-patch.result


 The capacity scheduler queue is initialized with a HashMap, the values of 
 which are later added to a list (a queue for assigning tasks). 
 TestCapacityScheduler depends on the order of the list hence not portable 
 across JDKs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4271) Make TestCapacityScheduler more robust with non-Sun JDK

2013-01-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4271:
---

Attachment: MAPREDUCE-4271-branch1-v2.patch

Use only with IBM JAVA SDK 

 Make TestCapacityScheduler more robust with non-Sun JDK
 ---

 Key: MAPREDUCE-4271
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4271
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: capacity-sched
Affects Versions: 1.0.3
Reporter: Luke Lu
Assignee: Yu Gao
  Labels: alt-jdk, capacity
 Fix For: 1.1.1

 Attachments: mapreduce-4271-branch-1.patch, 
 MAPREDUCE-4271-branch1-v2.patch, test-afterepatch.result, 
 test-beforepatch.result, test-patch.result


 The capacity scheduler queue is initialized with a HashMap, the values of 
 which are later added to a list (a queue for assigning tasks). 
 TestCapacityScheduler depends on the order of the list hence not portable 
 across JDKs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4273) Make CombineFileInputFormat split result JDK independent

2013-01-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4273?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4273:
---

Attachment: MAPREDUCE-4273-branch1-v2.patch

This patch will work with both IBM SDK and Oracle SDK 6.0. 
impacted files: lib/input/TestCombineFileInputFormat.java and 
lib/TestCombineFileInputFormat.java
Assumptions was made that original developer of CombineFileInputFormat class 
was aware of HashMap characteristic. However, above testcases were implemented 
as the order of element on HashMap are always constant.  


 Make CombineFileInputFormat split result JDK independent
 

 Key: MAPREDUCE-4273
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4273
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: client
Affects Versions: 1.0.3
Reporter: Luke Lu
Assignee: Yu Gao
 Attachments: mapreduce-4273-branch-1.patch, 
 MAPREDUCE-4273-branch1-v2.patch, mapreduce-4273-branch-2.patch, 
 mapreduce-4273.patch


 The split result of CombineFileInputFormat depends on the iteration order of  
 nodeToBlocks and rackToBlocks hash maps, which makes the result HashMap 
 implementation hence JDK dependent.
 This is manifested as TestCombineFileInputFormat failures on alternative JDKs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4859) TestRecoveryManager fails on branch-1

2013-01-29 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4859?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13566148#comment-13566148
 ] 

Amir Sanjar commented on MAPREDUCE-4859:


thanks Tom


 TestRecoveryManager fails on branch-1
 -

 Key: MAPREDUCE-4859
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4859
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Arun C Murthy
Assignee: Arun C Murthy
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4859.patch, MAPREDUCE-4859.patch, 
 MAPREDUCE-4859.patch


 Looks like the tests are extremely flaky and just hang.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4271) Make TestCapacityScheduler more robust with non-Sun JDK

2013-01-21 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4271?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13558967#comment-13558967
 ] 

Amir Sanjar commented on MAPREDUCE-4271:


this testcase also fails with non IBM JDK. Verified to fail with Oracle JAVA 7

 Make TestCapacityScheduler more robust with non-Sun JDK
 ---

 Key: MAPREDUCE-4271
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4271
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: capacity-sched
Affects Versions: 1.0.3
Reporter: Luke Lu
Assignee: Yu Gao
  Labels: alt-jdk, capacity
 Attachments: mapreduce-4271-branch-1.patch, test-afterepatch.result, 
 test-beforepatch.result, test-patch.result


 The capacity scheduler queue is initialized with a HashMap, the values of 
 which are later added to a list (a queue for assigning tasks). 
 TestCapacityScheduler depends on the order of the list hence not portable 
 across JDKs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4859) TestRecoveryManager fails on branch-1

2012-12-16 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4859?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13533421#comment-13533421
 ] 

Amir Sanjar commented on MAPREDUCE-4859:


is there a patch for release 1.1.1? .. thanks

 TestRecoveryManager fails on branch-1
 -

 Key: MAPREDUCE-4859
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4859
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.1.1
Reporter: Arun C Murthy
Assignee: Arun C Murthy
 Fix For: 1.1.2

 Attachments: MAPREDUCE-4859.patch, MAPREDUCE-4859.patch, 
 MAPREDUCE-4859.patch


 Looks like the tests are extremely flaky and just hang.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA

2012-12-05 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4732:
---

Summary: testcase testJobRetire fails using IBM JAVA   (was: testcase 
testJobRetire fails using IBM JAVA 7)

 testcase testJobRetire fails using IBM JAVA 
 

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA

2012-12-05 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13510486#comment-13510486
 ] 

Amir Sanjar commented on MAPREDUCE-4732:


was able to reprouduce on IBM JAVA 6.. updatting abstract 

 testcase testJobRetire fails using IBM JAVA 
 

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4829) Unit Test: TestMiniMRMapRedDebugScript fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4829?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4829:
---

Attachment: MAPREDUCE-4829-release-1.1.patch
MAPREDUCE-4829-branch1.patch

 Unit Test: TestMiniMRMapRedDebugScript fails when ran with ant-1.8.4 and not 
 1.7.x 
 ---

 Key: MAPREDUCE-4829
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4829
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4829-branch1.patch, 
 MAPREDUCE-4829-release-1.1.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4829) Unit Test: TestMiniMRMapRedDebugScript fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4829?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13506567#comment-13506567
 ] 

Amir Sanjar commented on MAPREDUCE-4829:


verified patches on Fedora 17 (ant 1.8.4 is pre-installed ) and RHEL 6.3 (ant 
1.7.x preinstalled) development release + IBM JAVA 7 SR3.

 Unit Test: TestMiniMRMapRedDebugScript fails when ran with ant-1.8.4 and not 
 1.7.x 
 ---

 Key: MAPREDUCE-4829
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4829
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4829-branch1.patch, 
 MAPREDUCE-4829-release-1.1.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: (was: MAPREDUCE-4828-release-1.1.0.patch)

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: MAPREDUCE-4828-release-1.1.0.patch

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch, 
 MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: (was: MAPREDUCE-4828-branch1.patch)

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch, 
 MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-29 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: MAPREDUCE-4828-branch1.patch

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch, 
 MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-28 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4828:
--

 Summary: Unit Test: TestTaskTrackerLocalization fails when ran 
with ant-1.8.4 and not 1.7.x
 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0


Problem is caused by JUnit3 based testcases ran in Junit4 environment 
configured by ant 1.8.4..
in this case @Ignore tag is not getting ignored. 
This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4829) Unit Test: TestMiniMRMapRedDebugScript fails when ran with ant-1.8.4 and not 1.7.x

2012-11-28 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4829:
--

 Summary: Unit Test: TestMiniMRMapRedDebugScript fails when ran 
with ant-1.8.4 and not 1.7.x 
 Key: MAPREDUCE-4829
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4829
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0


Problem is caused by JUnit3 based testcases ran in Junit4 environment 
configured by ant 1.8.4..
in this case @Ignore tag is not getting ignored. 
This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-28 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: MAPREDUCE-4828-release-1.1.0.patch

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-28 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4828:
---

Attachment: MAPREDUCE-4828-branch1.patch

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch, 
 MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4828) Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 1.7.x

2012-11-28 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4828?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13506012#comment-13506012
 ] 

Amir Sanjar commented on MAPREDUCE-4828:


this failure has been seen in multiple f17  rehel 6.3 hadoop development 
environments.  

 Unit Test: TestTaskTrackerLocalization fails when ran with ant-1.8.4 and not 
 1.7.x
 --

 Key: MAPREDUCE-4828
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4828
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.1.0
 Environment: Fedora 17  RHEL 6.3, x86_64, IBM JAVA 7
Reporter: Amir Sanjar
Priority: Critical
 Fix For: 1.1.0

 Attachments: MAPREDUCE-4828-branch1.patch, 
 MAPREDUCE-4828-release-1.1.0.patch


 Problem is caused by JUnit3 based testcases ran in Junit4 environment 
 configured by ant 1.8.4..
 in this case @Ignore tag is not getting ignored. 
 This testcase has been removed from trunk

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2012-11-26 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4821:
--

 Summary: Unit Test: TestJobTrackerRestart fails when it is run 
with ant-1.8.4
 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.4, 1.0.3
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Fix For: 1.1.1, 1.0.3


Problem:
JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not JUnit4:
Solution:
Migrate the testcase to JUnit4, including:
* Remove extends TestCase
* Remove import junit.framework.TestCase;
* Add import org.junit.*; 
* Use appropriate annotations such as @After, @Before, @Test.

uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2012-11-26 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4821:
---

Attachment: MAPREDUCE-4821-release-1.0.3.patch

 Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4
 

 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Fix For: 1.0.3, 1.1.1

 Attachments: MAPREDUCE-4821-release-1.0.3.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4, including:
 * Remove extends TestCase
 * Remove import junit.framework.TestCase;
 * Add import org.junit.*; 
 * Use appropriate annotations such as @After, @Before, @Test.
 uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2012-11-26 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4821:
---

Attachment: MAPREDUCE-4821-branch1.patch

branch1 patch

 Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4
 

 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Fix For: 1.0.3, 1.1.1

 Attachments: MAPREDUCE-4821-branch1.patch, 
 MAPREDUCE-4821-release-1.0.3.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4, including:
 * Remove extends TestCase
 * Remove import junit.framework.TestCase;
 * Add import org.junit.*; 
 * Use appropriate annotations such as @After, @Before, @Test.
 uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4821) Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4

2012-11-26 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4821?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13504378#comment-13504378
 ] 

Amir Sanjar commented on MAPREDUCE-4821:


TestJobTrackerRestart testcase is not included in trunk


 Unit Test: TestJobTrackerRestart fails when it is run with ant-1.8.4
 

 Key: MAPREDUCE-4821
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4821
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: RHEL 6.3 on x86
Reporter: Amir Sanjar
 Fix For: 1.0.3, 1.1.1

 Attachments: MAPREDUCE-4821-branch1.patch, 
 MAPREDUCE-4821-release-1.0.3.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4, including:
 * Remove extends TestCase
 * Remove import junit.framework.TestCase;
 * Add import org.junit.*; 
 * Use appropriate annotations such as @After, @Before, @Test.
 uploading a patch shortly 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-15 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4792:
---

Attachment: (was: MAPREDUCE-4792-branch-1.patch)

 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.0.4, 1.1.1

 Attachments: MAPREDUCE-4792-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4792:
---

Attachment: MAPREDUCE-4792-branch-1.patch

 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.0.4, 1.1.1

 Attachments: MAPREDUCE-4792-branch-1.patch, 
 MAPREDUCE-4792-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Status: Open  (was: Patch Available)

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: HADOOP-9024-branch-1.patch, MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Attachment: (was: HADOOP-9024-branch-1.patch)

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Attachment: (was: MAPREDUCE-4781-branch-1.patch)

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Attachment: MAPREDUCE-4781-branch-1.patch

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-14 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Attachment: HADOOP-4781.patch

patch for trunk

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: HADOOP-4781.patch, MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-13 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4792:
--

 Summary: Unit Test TestJobTrackerRestartWithLostTracker fails with 
ant-1.8.4
 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.4, 1.0.3
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.1.1, 1.0.4


Problem:
JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not JUnit4:
Solution:
Migrate the testcase to JUnit4
How:

Remove extends TestCase

SetUp and TearDown methods

@Override
protected void setUp() throws Exception { }

replaced by:

@Before
public void setUp() throws Exception { }

Same for tearDown():

@Override
protected void tearDown() throws Exception { }

replaced by

@After
public void tearDown() throws Exception { }

Imports

The imports has to be reorganized:
Remove import junit.framework.TestCase;
Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-13 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496410#comment-13496410
 ] 

Amir Sanjar commented on MAPREDUCE-4792:


testcase is not in the trunk


 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.0.4, 1.1.1


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4792:
---

Attachment: MAPREDUCE-4792-branch-1.patch

tested with ant 1.7.x and 1.8.4

 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3, 1.0.4
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.0.4, 1.1.1

 Attachments: MAPREDUCE-4792-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4792:
---

Target Version/s: 1.0.4, 1.0.3
  Status: Patch Available  (was: Open)

 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.4, 1.0.3
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.1.1, 1.0.4

 Attachments: MAPREDUCE-4792-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Component/s: test

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Attachment: (was: MAPREDUCE-4779-branch-1.patch)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar

 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-13 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496609#comment-13496609
 ] 

Amir Sanjar commented on MAPREDUCE-4779:


Thanks Jing for the education, it was most useful .. 

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Attachment: MAPREDUCE-4779-branch-1.patch

patch for branch-1

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4792) Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4792:
---

Target Version/s: 1.0.4, 1.0.3  (was: 1.0.3, 1.0.4)
  Status: Open  (was: Patch Available)

 Unit Test TestJobTrackerRestartWithLostTracker fails with ant-1.8.4
 ---

 Key: MAPREDUCE-4792
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4792
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.4, 1.0.3
 Environment: fedora 17_64 x86
Reporter: Amir Sanjar
 Fix For: 1.1.1, 1.0.4

 Attachments: MAPREDUCE-4792-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before; import 
 org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Open  (was: Patch Available)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-12 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13495490#comment-13495490
 ] 

Amir Sanjar commented on MAPREDUCE-4781:


testcases do not fail on TRUNK because  @ignore tag is not used, however it 
should still be migrated to JUnit4, any suggestion? 

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: HADOOP-9024-branch-1.patch, MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13493164#comment-13493164
 ] 

Amir Sanjar commented on MAPREDUCE-4779:


my bad, testcase is no longer in the trunk.. fixing patch naming for release 
1.0.3  

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Open  (was: Patch Available)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Patch Available  (was: Open)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Attachment: (was: MAPREDUCE-4779.patch)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Attachment: MAPREDUCE-4779-branch-1.patch

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779-branch-1.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4781:
--

 Summary: Unit test TestKerberosAuthenticationHandler fails with 
ant 1.8.3+
 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar


Problem:
JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not JUnit4:
Solution:
Migrate the testcase to JUnit4
How:

Remove extends TestCase

SetUp and TearDown methods

@Override
protected void setUp() throws Exception { }

replaced by:

@Before
public void setUp() throws Exception { }

Same for tearDown():

@Override
protected void tearDown() throws Exception { }

replaced by

@After
public void tearDown() throws Exception { }

Imports

The imports has to be reorganized:
Remove import junit.framework.TestCase;
Add org.junit.*; or import org.junit.After; import org.junit.Before;   
import org.junit.Test;


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Attachment: MAPREDUCE-4781-branch-1.patch

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4781) Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+

2012-11-08 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4781?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4781:
---

Status: Patch Available  (was: Open)

 Unit test TestKerberosAuthenticationHandler fails with ant 1.8.3+
 -

 Key: MAPREDUCE-4781
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4781
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17_64 on x86
Reporter: Amir Sanjar
 Attachments: MAPREDUCE-4781-branch-1.patch


 Problem:
 JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
 Migrate the testcase to JUnit4
 How:
 Remove extends TestCase
 SetUp and TearDown methods
 @Override
 protected void setUp() throws Exception { }
 replaced by:
 @Before
 public void setUp() throws Exception { }
 Same for tearDown():
 @Override
 protected void tearDown() throws Exception { }
 replaced by
 @After
 public void tearDown() throws Exception { }
 Imports
 The imports has to be reorganized:
 Remove import junit.framework.TestCase;
 Add org.junit.*; or import org.junit.After; import org.junit.Before;   
 import org.junit.Test;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-07 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4779:
--

 Summary: Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar


Problem:
  JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
JUnit4:
Solution:
 Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Patch Available  (was: Open)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Attachment: MAPREDUCE-4779.patch

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Patch Available  (was: Open)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4779) Unit test TestJobTrackerSafeMode fails with ant 1.8.3+

2012-11-07 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4779:
---

Status: Open  (was: Patch Available)

 Unit test TestJobTrackerSafeMode fails with  ant 1.8.3+
 ---

 Key: MAPREDUCE-4779
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4779
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Affects Versions: 1.0.3
 Environment: Fedora 17 on x86_64
Reporter: Amir Sanjar
Assignee: Amir Sanjar
 Attachments: MAPREDUCE-4779.patch


 Problem:
   JUnit tag @Ignore is not recognized since the testcase is JUnit3 and not 
 JUnit4:
 Solution:
  Migrate the testcase to JUnit4

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA 7

2012-10-31 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4732:
---

Priority: Major  (was: Minor)

 testcase testJobRetire fails using IBM JAVA 7
 -

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA 7

2012-10-31 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13488205#comment-13488205
 ] 

Amir Sanjar commented on MAPREDUCE-4732:


this is blocking our %100 success running all  unittests, should I submit the 
patch?


 testcase testJobRetire fails using IBM JAVA 7
 -

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA 7

2012-10-19 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13480154#comment-13480154
 ] 

Amir Sanjar commented on MAPREDUCE-4732:


like submit these changes to waitTillRetire() in TestJobRetire.java  patch, any 
suggestions?
 private void waitTillRetire(JobID id, JobTracker jobtracker) {
//wait for job to get retired
int noSec = 
Integer.parseInt(System.getProperty(test.job.retire.timeout, 10));  
added
JobInProgress job = jobtracker.getJob(id);
for (int i = 0; i  noSec  job != null; i++) {
    changed
  UtilsForTests.waitFor(1000);
  job = jobtracker.getJob(id);
}
assertNull(Timeout - Job did not retire. Increase value of 
test.job.retire.timeout property, current value=+noSec, job); === changed 
  }

 testcase testJobRetire fails using IBM JAVA 7
 -

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar
Priority: Minor

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA 7

2012-10-18 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4732:
--

 Summary: testcase testJobRetire fails using IBM JAVA 7
 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar
Priority: Minor


Testcase: testJobRetire took 53.352 sec
Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
FAILED
Job did not retire
junit.framework.AssertionFailedError: Job did not retire
at 
org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
at 
org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)

Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4732) testcase testJobRetire fails using IBM JAVA 7

2012-10-18 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4732?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13479395#comment-13479395
 ] 

Amir Sanjar commented on MAPREDUCE-4732:


debug result: 

 private void waitTillRetire(JobID id, JobTracker jobtracker) {
//wait for job to get retired
JobInProgress job = jobtracker.getJob(id);
for (int i = 0; i  10  job != null; i++) {
  UtilsForTests.waitFor(1000);  
  job = jobtracker.getJob(id);
}
assertNull(Job did not retire, job); = assertion job != null

Conclusion: this is a timing issue, build and run with IBM JAVA 7, this 
particular jobs does not terminate in the given maximum time of 10sec, Works 
with 15 sec on a TP520.
Having a hardcoded max time is not recommanded..
We are testing a patch.. will be up loaded shortly ..

  

 testcase testJobRetire fails using IBM JAVA 7
 -

 Key: MAPREDUCE-4732
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4732
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: test
Affects Versions: 1.0.3
 Environment: RHEL 6.2 with IBM JAVA 7 on a x86_64 system
Reporter: Amir Sanjar
Priority: Minor

 Testcase: testJobRetire took 53.352 sec
 Testcase: testJobRetireWithUnreportedTasks took 41.173 sec
   FAILED
 Job did not retire
 junit.framework.AssertionFailedError: Job did not retire
   at 
 org.apache.hadoop.mapred.TestJobRetire.waitTillRetire(TestJobRetire.java:130)
   at 
 org.apache.hadoop.mapred.TestJobRetire.testJobRetireWithUnreportedTasks(TestJobRetire.java:229)
 Testcase: testJobRemoval took 1.073 sec

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-3357) TestMRWithDistributedCache fails on branch-20-security

2012-09-14 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-3357?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13455821#comment-13455821
 ] 

Amir Sanjar commented on MAPREDUCE-3357:


add chmod a+x $HOME .. it should fix the problem. let me know

 TestMRWithDistributedCache fails on branch-20-security
 --

 Key: MAPREDUCE-3357
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-3357
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: distributed-cache, test
Affects Versions: 0.20.205.0
Reporter: Eli Collins

 TestMRWithDistributedCache testLocalJobRunner fails on branch-20-security:
 {noformat}
 Testcase: testLocalJobRunner took 5.501 sec
 FAILED
 null
 junit.framework.AssertionFailedError: null
 at 
 org.apache.hadoop.filecache.TestMRWithDistributedCache.testWithConf(TestMRWithDistributedCache.java:154)
 at 
 org.apache.hadoop.filecache.TestMRWithDistributedCache.testLocalJobRunner(TestMRWithDistributedCache.java:162)
 {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)
Amir Sanjar created MAPREDUCE-4653:
--

 Summary: TestRandomAlgorithm has an unused import statement 
 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3


need to remove the import statement usinf below patch. will attach a patch 
shortly .
 
Index: TestRandomAlgorithm.java
===
--- TestRandomAlgorithm.java(revision 1380737)
+++ TestRandomAlgorithm.java(working copy)
@@ -30,8 +30,6 @@
 
 import org.junit.Test;
 
-import com.sun.tools.javac.code.Attribute.Array;
-
 public class TestRandomAlgorithm {
   private static final int[][] parameters = new int[][] {
 {5, 1, 1}, 


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13455171#comment-13455171
 ] 

Amir Sanjar commented on MAPREDUCE-4653:


sure will do..


 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

 Attachments: MAPREDUCE-4653.patch

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13455185#comment-13455185
 ] 

Amir Sanjar commented on MAPREDUCE-4653:


done, thx


 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

 Attachments: MAPREDUCE-4653.patch, MAPREDUCE-4653.patch

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4653:
---

Attachment: MAPREDUCE-4653.patch

pathc from TRUNK

 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

 Attachments: MAPREDUCE-4653.patch, MAPREDUCE-4653.patch

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4653:
---

Attachment: (was: MAPREDUCE-4653.patch)

 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4653:
---

Attachment: (was: MAPREDUCE-4653.patch)

 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

 [ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amir Sanjar updated MAPREDUCE-4653:
---

Attachment: MAPREDUCE-4653.patch

 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

 Attachments: MAPREDUCE-4653.patch

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (MAPREDUCE-4653) TestRandomAlgorithm has an unused import statement

2012-09-13 Thread Amir Sanjar (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4653?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13455283#comment-13455283
 ] 

Amir Sanjar commented on MAPREDUCE-4653:


sorry, I hope this one is okay :)


 TestRandomAlgorithm has an unused import statement 
 -

 Key: MAPREDUCE-4653
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4653
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: contrib/gridmix
Affects Versions: 1.0.3
 Environment: hadoop 1.0.3 on any platform 
Reporter: Amir Sanjar
Assignee: Amir Sanjar
Priority: Trivial
 Fix For: 1.0.3

 Attachments: MAPREDUCE-4653.patch

   Original Estimate: 24h
  Remaining Estimate: 24h

 need to remove the import statement usinf below patch. will attach a patch 
 shortly .
  
 Index: TestRandomAlgorithm.java
 ===
 --- TestRandomAlgorithm.java  (revision 1380737)
 +++ TestRandomAlgorithm.java  (working copy)
 @@ -30,8 +30,6 @@
  
  import org.junit.Test;
  
 -import com.sun.tools.javac.code.Attribute.Array;
 -
  public class TestRandomAlgorithm {
private static final int[][] parameters = new int[][] {
  {5, 1, 1}, 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira