Merge: jenkins: name command test results with `cmd` instead of `run`
authorJean Privat <jean@pryen.org>
Wed, 19 Aug 2015 19:02:02 +0000 (15:02 -0400)
committerJean Privat <jean@pryen.org>
Wed, 19 Aug 2015 19:02:02 +0000 (15:02 -0400)
commitbce4aae1c0f4e93b6a647c2fa7f123620534eedf
treee846a1e5201eda58b6a3256c42798423e547619e
parentb144984d92908662f47a251f1cca1fd8e57b2594
parent15603c617e9e8261c321a8af1a8bab7f471137b5
Merge: jenkins: name command test results with `cmd` instead of `run`

The infamous bug that caused some tests result to silently make Jenkins go mad is found.
The issue was to have a junit package named `run`; unfortunately, package names are used as is in URL by Jenkins and `run` in URL seems to have a special buggy behavior. Eg

* http://gresil.org/jenkins/job/CI_github/lastCompletedBuild/testReport/run/foo
* http://gresil.org/jenkins/job/CI_github/lastCompletedBuild/testReport/notrun/foo

The solution is to name the pseudo-package `cmd` instead.

Pull-Request: #1639
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>