base64-t.c:

  Calculate and output line count first to be
  compatible with older versions of Test::Harness
parent 6966fa0c
...@@ -18,13 +18,18 @@ ...@@ -18,13 +18,18 @@
#include <tap.h> #include <tap.h>
#include <string.h> #include <string.h>
#define BASE64_LOOP_COUNT 500
#define BASE64_ROWS 4 /* Number of ok(..) */
int int
main(void) main(void)
{ {
int i, cmp; int i, cmp;
size_t j, k, l, dst_len, needed_length; size_t j, k, l, dst_len, needed_length;
for (i= 0; i < 500; i++) plan(BASE64_LOOP_COUNT * BASE64_ROWS);
for (i= 0; i < BASE64_LOOP_COUNT; i++)
{ {
/* Create source data */ /* Create source data */
const size_t src_len= rand() % 1000 + 1; const size_t src_len= rand() % 1000 + 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment