[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-30 Thread sascha.frieder...@scoop-software.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sascha Friederich commented on  JENKINS-48945  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Testreport lacks of those test in which the hashcode of two different testsuite name coincide   
 

  
 
 
 
 

 
 is there a plan, when this bugfix will be released? (its not part of Version: 1.103)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-25 Thread sascha.frieder...@scoop-software.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sascha Friederich commented on  JENKINS-48945  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Testreport lacks of those test in which the hashcode of two different testsuite name coincide   
 

  
 
 
 
 

 
 Thank You  for solving this issue so fast   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-25 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco started work on  JENKINS-48945  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Nikolas Falco  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-25 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-48945  
 
 
  Testreport lacks of those test in which the hashcode of two different testsuite name coincide   
 

  
 
 
 
 

 
Change By: 
 Nikolas Falco  
 
 
Status: 
 In Progress Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-25 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-48945  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Testreport lacks of those test in which the hashcode of two different testsuite name coincide   
 

  
 
 
 
 

 
 Code changed in jenkins User: Nikolas Falco Path: src/main/java/org/jenkinsci/plugins/xunit/XUnitDefaultValues.java src/main/java/org/jenkinsci/plugins/xunit/service/XUnitConversionService.java src/main/java/org/jenkinsci/plugins/xunit/service/XUnitTransformer.java src/main/java/org/jenkinsci/plugins/xunit/types/CustomType.java src/test/java/org/jenkinsci/plugins/xunit/service/XUnitConversionServiceTest.java src/test/java/org/jenkinsci/plugins/xunit/service/XUnitTransformerTest.java http://jenkins-ci.org/commit/xunit-plugin/2885f4f57ceaa1e816db07ca414285935b83c783 Log: JENKINS-48945 Testreport lacks of those test in which the hashcode of two different testsuite name coincide Use UUID instead the hashcode of the file to generate a unique converted test report. By default java provides a version 4 UUID that ensure be unique in the same JVM instance. Since there are no more JVM that works with the same workspace is enough. A version 1 UUID that use MAC address to ensure file is unique over Jenkins nodes is not needed since XUnitProcessor does not copy slave node report files back to master.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-48945) Testreport lacks of those test in which the hashcode of two different testsuite name coincide

2018-04-25 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-48945  
 
 
  Testreport lacks of those test in which the hashcode of two different testsuite name coincide   
 

  
 
 
 
 

 
Change By: 
 Nikolas Falco  
 
 
Summary: 
 wrong testreport, if testnames produce a hashcollision (because Testreport lacks  of  temp. generated junit-files)  those test in which the hashcode of two different testsuite name coincide  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.