Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tester.c

    r1cf3f8d3 re7dc035  
    143143
    144144
    145 #define OWL_DICT_NTESTS  20
    146 #define OWL_UTIL_NTESTS  9
    147 #define OWL_OBARRAY_NTESTS  5
    148 #define OWL_VARIABLE_NTESTS  52
    149 #define OWL_FILTER_NTESTS  23
    150 
    151145int main(int argc, char **argv, char **env)
    152146{
     
    155149
    156150  int numfailures=0;
    157   if (argc==1 || (argc==2 && 0==strcmp(argv[1],"reg"))) {
    158     printf("1..%d\n", OWL_UTIL_NTESTS+OWL_DICT_NTESTS+OWL_VARIABLE_NTESTS
    159            +OWL_FILTER_NTESTS+OWL_OBARRAY_NTESTS);
     151  if (argc==2 && 0==strcmp(argv[1],"reg")) {
    160152    numfailures += owl_util_regtest();
    161153    numfailures += owl_dict_regtest();
     
    164156    numfailures += owl_obarray_regtest();
    165157    if (numfailures) {
    166       fprintf(stderr, "# *** WARNING: %d failures total\n", numfailures);
     158      fprintf(stderr, "*** WARNING: %d failures total\n", numfailures);
    167159    }
    168160    return(numfailures);
Note: See TracChangeset for help on using the changeset viewer.