IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29134


Ignore:
Timestamp:
Sep 9, 2010, 11:38:53 AM (16 years ago)
Author:
watersc1
Message:

Add diff_mode as an option to the listrun mode.

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/difftool.c

    r28375 r29134  
    28682868    pxAddLabelSearchArgs (config, where, "-data_group", "diffRun.data_group", "LIKE");
    28692869    pxAddLabelSearchArgs (config, where, "-dist_group", "diffRun.dist_group", "LIKE");
    2870 
     2870   
    28712871    PXOPT_LOOKUP_BOOL(template, config->args, "-template", false);
    28722872    if (!template) {
     
    28902890    PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false);
    28912891    PXOPT_LOOKUP_BOOL(pstamp_order, config->args, "-pstamp_order", false);
    2892 
     2892    PXOPT_LOOKUP_S16(diff_mode, config->args, "-diff_mode", false, false);
     2893    if (diff_mode) {
     2894      PXOPT_COPY_S16(config->args, where, "-diff_mode", "diffRun.diff_mode", "==");
     2895    }
    28932896
    28942897    psString where2 = NULL;
  • trunk/ippTools/src/difftoolConfig.c

    r28375 r29134  
    184184    psMetadataAddStr(listrunArgs,  PS_LIST_TAIL, "-data_group",  PS_META_DUPLICATE_OK, "search by diffRun data_group (LIKE comparison)", NULL);
    185185    psMetadataAddStr(listrunArgs,  PS_LIST_TAIL, "-dist_group",  PS_META_DUPLICATE_OK, "search by diffRun dist_group (LIKE comparison)", NULL);
     186    psMetadataAddS16(listrunArgs,  PS_LIST_TAIL, "-diff_mode", 0,        "search for diff_mode", 0);
    186187    pxmagicAddArguments(listrunArgs);
    187188    pxspaceAddArguments(listrunArgs);
Note: See TracChangeset for help on using the changeset viewer.