Bugzilla – Bug 97
qselect support for -s C
Last modified: 2010-11-14 09:22:35 MST
You need to log in before you can comment on or make changes to this bug.
qselect does not support querying for jobs in the Completed state. This simple patch against SVN trunk allows that. --- trunk/src/cmds/qselect.c.orig 2010-11-05 14:16:32.000000000 -0400 +++ trunk/src/cmds/qselect.c 2010-11-05 14:31:03.000000000 -0400 @@ -518,8 +518,9 @@ int main( while (*pc) { - if (*pc != 'E' && *pc != 'H' && *pc != 'Q' && - *pc != 'R' && *pc != 'T' && *pc != 'W') + if (*pc != 'C' && *pc != 'E' && *pc != 'H' && + *pc != 'Q' && *pc != 'R' && *pc != 'T' && + *pc != 'W') { fprintf(stderr, "qselect: illegal -s value\n"); errflg++;
Committed and will be part of TORQUE 2.5.3
Created an attachment (id=63) [details] Add completed state to man page