FACT++  1.0
static void vcs ( const char *  val,
const char *  valok,
const char *  func,
const char *  test,
int *  status 
)
static

Definition at line 140 of file palTest.c.

References verbose.

Referenced by t_obs().

142  {
143 
144  if (strcmp(val, valok) != 0) {
145  *status = 1;
146  printf("%s failed: %s want %s got %s\n",
147  func, test, valok, val );
148  } else if (verbose) {
149  printf("%s passed: %s want %s got %s\n",
150  func, test, valok, val );
151  }
152  return;
153 
154 }
static int verbose
Definition: palTest.c:60

+ Here is the caller graph for this function: