Commit bfc491a2 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

The unit test argument is allowed to be used

parent fb199cd2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -69,9 +69,9 @@
extern int unitfail;

#define UNITTEST_START                          \
  int test(char *unused)                        \
  int test(char *arg)                           \
  {                                             \
  (void)unused;                                 \
  (void)arg;                                    \
  if (unit_setup()) {                           \
    fail("unit_setup() failure");               \
  } else {