MantisBT - CDash
View Issue Details
0015484CDash(No Category)public2015-03-31 10:042015-03-31 10:07
Nils Gladitz 
 
normalminorrandom
newopen 
 
 
0015484: Missing build failure command line argument
Currently using 2f35c8a48c503726cd465dc782433540202f0e45 and postgresql.

Sometimes in viewBuildError.php for builds that used launcher wrapped compiler calls (CTEST_USE_LAUNCHERS) the command line is missing the first argument (e.g. the compiler command itself).

Other arguments may also have been missing but I only noticed it for the first.

e.g. the following query on my database shows a missing row in the buildfailureargument table:

cdash=# SELECT * FROM buildfailure2argument LEFT OUTER JOIN buildfailureargument ON buildfailureargument.id = buildfailure2argument.argumentid WHERE buildfailureid=391947 AND place = 0;
 buildfailureid | argumentid | place | id | argument
----------------+------------+-------+----------+----------
         391947 | 391947 | 0 | <<NULL>> | <<NULL>>
(1 row)

No tags attached.
Issue History
2015-03-31 10:04Nils GladitzNew Issue
2015-03-31 10:07Nils GladitzNote Added: 0038370

Notes
(0038370)
Nils Gladitz   
2015-03-31 10:07   
Tried the following query to see if other arguments are missing as well:

cdash=# SELECT * FROM buildfailure2argument LEFT OUTER JOIN buildfailureargument ON buildfailureargument.id = buildfailure2argument.argumentid WHERE buildfailureargument.argument IS NULL LIMIT 5;
 buildfailureid | argumentid | place | id | argument
----------------+------------+-------+----------+----------
         371378 | 371378 | 0 | <<NULL>> | <<NULL>>
         371384 | 371384 | 29 | <<NULL>> | <<NULL>>
         371387 | 371387 | 0 | <<NULL>> | <<NULL>>
         371395 | 371395 | 51 | <<NULL>> | <<NULL>>
         371396 | 371396 | 38 | <<NULL>> | <<NULL>>
(5 rows)

So apparently it is not just the first argument that can go missing.