HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
test_printf.c
Go to the documentation of this file.
1 
27 // only used when testing standalone on linux
28 #ifdef PRINTF_TEST
29 
30 #include <stdio.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <ctype.h>
34 
35 #include <stdarg.h>
36 #include <stdint.h>
37 #include <math.h>
38 
39 #include "mathio.h"
40 
58 long long numcmp(uint8_t *str1, uint8_t *str2, int max)
59 {
60 
61  int nzflag = 0;
62  uint8_t n1[64+2],n2[64+2];
63  uint8_t c1,c2;
64  int ind1,ind2;
65  int len1,len2;
66  int count = 0;
67  int offset = 0;
68  long long diff, l1,l2;
69 
70  uint8_t *save1 = str1;
71  uint8_t *save2 = str2;
72 
73  ind1 = 0;
74  ind2 = 0;
75 
76  if(max > 64)
77  max = 64;
78 
79  len1 = strlen(save1);
80  len2 = strlen(save2);
81  if(len1 != len2)
82  {
83  printf("WARN: length mismatch (%d) != (%d)\n",
84  len1,len2);
85  printf(" str1:[%s]\n", save1);
86  printf(" str2:[%s]\n", save2);
87  return(-1LL);
88  }
89 
90 // discard leading space,,+/- characters
91  while( (c1 = *str1) && (c2 = *str2) )
92  {
93  if( isdigit(c1) || isdigit(c2) )
94  break;
95 
96  if(c1 != c2)
97  {
98  n1[ind1] = 0;
99  n2[ind2] = 0;
100  printf("WARN: mismatch at (%d)\n", count);
101  printf(" str1 offset:%d\n", (int)(str1 - save1));
102  printf(" str2 offset:%d\n", (int)(str2 - save2));
103  printf(" str1:[%s]\n", save1);
104  printf(" str2:[%s]\n", save2);
105  printf(" n1:[%s]\n", n1);
106  printf(" n2:[%s]\n", n2);
107  return(-1LL);
108  }
109 
110 // sign an leading zeros
111  if(c1 == '.' || c1 == ' ' || c1 == '-' || c1 == '+')
112  {
113  ++str1;
114  ++str2;
115  ++count;
116  continue;
117  }
118  break;
119  }
120 
121  while( (c1 = *str1) && (c2 = *str2) )
122  {
123  if( c1 == '.' && c2 == '.' )
124  {
125  ++str1;
126  ++str2;
127  ++count;
128  continue;
129  }
130 
131  if( !isdigit(c1) || !isdigit(c2) )
132  break;
133 
134  if(!nzflag && (c1 != '0' || c2 != '0'))
135  nzflag = 1;
136 
137  if(nzflag)
138  {
139 // no more then 16 digits
140  if(ind1 < max)
141  {
142  n1[ind1++] = c1;
143  n2[ind2++] = c2;
144  }
145  }
146  ++count;
147  ++str1;
148  ++str2;
149  }
150  n1[ind1] = 0;
151  n2[ind2] = 0;
152 
153  c1 = *str1;
154  c2 = *str2;
155 
156  if(c1 != c2)
157  {
158  printf("WARN: mismatch at (%d) %02X != %02X\n",
159  (int) count, (int) c1, (int) c2);
160  printf(" str1 offset:%d\n", (int)(str1 - save1));
161  printf(" str2 offset:%d\n", (int)(str2 - save2));
162  printf(" str1:[%s]\n", save1);
163  printf(" str2:[%s]\n", save2);
164  printf(" n1:[%s]\n", n1);
165  printf(" n2:[%s]\n", n2);
166  return(-1LL);
167  }
168  if(c1 == 'e' || c1 == 'E')
169  {
170  if(strcmp(str1,str2) != 0)
171  {
172  printf("WARN: exponent mismatch at offset:(%d)\n", count);
173  printf(" str1:[%s]\n", save1);
174  printf(" str2:[%s]\n", save2);
175  printf(" n1:[%s]\n", n1);
176  printf(" n2:[%s]\n", n2);
177  return(-1LL);
178  }
179  }
180 
181  l1 = strtoll(n1,NULL,10);
182  l2 = strtoll(n2,NULL,10);
183  diff = l1 - l2;
184  if(diff < 0)
185  diff = -diff;
186 
187  return(diff);
188 }
189 
190 
191 // =============================================
196 static void _putc_fn(struct _printf_t *p, char ch)
197 {
198  p->sent++;
199  putchar(ch);
200 }
201 
202 
207 int t_printf(const char *format, ...)
208 {
209  int len;
210  int i;
211  printf_t fn;
212  va_list va;
213 
214  fn.put = _putc_fn;
215  fn.sent = 0;
216 
217  va_start(va, format);
218  _printf_fn(&fn, format, va);
219  va_end(va);
220 
221  len = fn.sent;
222  return (len);
223 }
224 
225 
226 // =============================================
233 MEMSPACE
234 int t_vsnprintf(char* str, size_t size, const char *format, va_list va)
235 {
236 
237  int len;
238  char *save = str;
239  printf_t fn;
240 
241  *str = 0;
242 
243  fn.put = _putc_buffer_fn;
244  fn.len = size;
245  fn.sent = 0;
246  fn.buffer = (void *) str;
247 
248  _printf_fn(&fn, format, va);
249 
250 // FIXME check size should == fn.size on exit
251  len = strlen(save);
252  return( len );
253 }
254 
255 
257 void sep()
258 {
259  printf("==============================\n");
260 }
261 
262 // =============================================
263 int display_good = 0;
264 long tp_good = 0; //@brief total good tests
265 long tp_bad = 0; //@brief total bad tests
266 long tp_fmt = 0; //@brief total empty format string errors
267 
273 MEMSPACE
274 void tp(const char *format, ...)
275 {
276  char str0[1024];
277  char fmt[1024];
278  char str1[1024];
279  char str2[1024];
280  int f;
281  int find, ind, len;
282  int matched;
283  long long error;
284  va_list va;
285  int digits;
286 
287  memset(str0,sizeof(str0)-1,0);
288  memset(str1,sizeof(str1)-1,0);
289  memset(str2,sizeof(str2)-1,0);
290  memset(fmt,sizeof(fmt)-1,0);
291 
292 // We want to save only type and type size specifiers)
293  find = 0;
294  fmt[find++] = '%';
295 
296  len = strlen(format);
297  if(len > 0)
298  {
299  ind = len - 1;
300  }
301  else
302  {
303  printf("ERROR: empty format\n");
304  printf(" G[%s]\n", str1);
305  printf(" B[%s]\n", str2);
306  printf("\n");
307  ++tp_fmt;
308  return;
309  }
310 
311 // We may have a size adjustment specifier
312 //FIXME add more as printf gains more type size conversion specifiers
313  if(ind >= 2)
314  {
315  f = format[ind-2];
316  if(f == 'l')
317  fmt[find++] = f;
318  }
319  f = format[ind-1];
320  if(f == 'l' || f == 'h')
321  fmt[find++] = f;
322 
323 // This should be the primary conversion type specifier
324  if(ind)
325  {
326  f = format[ind];
327  fmt[find++] = f;
328  }
329  fmt[find++] = 0;
330 
331 // GLIBC printf in str0 without extra specifiers
332  va_start(va, format);
333  len = vsnprintf(str0, sizeof(str0)-1, fmt, va);
334  va_end(va);
335  fflush(stdout);
336 
337 // GLIBC printf in str1
338  va_start(va, format);
339  len = vsnprintf(str1, sizeof(str1)-1, format, va);
340  va_end(va);
341  fflush(stdout);
342 
343 // Our Printf in str2
344  va_start(va, format);
345  len = t_vsnprintf(str2, sizeof(str2)-1, format, va);
346  va_end(va);
347  fflush(stdout);
348 
349 //FIXME add more as printf gains more conversion functions
350  if(f == 'g' || f == 'G' || f == 'e' || f == 'E' || f == 'f' || f == 'F')
351  {
352 /*
353  * Single mantissa 24bits base10 digits 7.22
354  * exponent 8bits base10 exponent 37
355  * Double mantissa 53bits base10 digits 15.95
356  * exponent 11bits base10 exponent 307
357  */
358  if(sizeof(double) == 8)
359  digits = 16;
360  else if(sizeof(double) == 4)
361  digits = 7;
362  else
363  {
364  fprintf(stderr,"Unexpected size of double:%d\n", (int)sizeof(double));
365  exit(1);
366  }
367 
368 // Compare results to N digit window
369  error = numcmp(str1,str2,digits);
370 
371 // A double 1 LSB error would be 10LL
372 // Remember the numbers may be rounded so we use less then 15LL
373  if(error < 0 || error > 14LL)
374  {
375  printf("ERROR: [%s], [%s]\n", format, str0);
376  printf(" G[%s]\n", str1);
377  printf(" B[%s]\n", str2);
378  printf(" error:%lld\n", error);
379  ++tp_bad;
380  }
381  else
382  {
383  ++tp_good;
384  if(display_good)
385  {
386  printf("OK: [%s], [%s]\n", format, str0);
387  printf(" G[%s]\n", str1);
388  }
389  }
390  }
391  else
392  {
393  if(strcmp(str1,str2) != 0)
394  {
395  printf("ERROR: [%s], [%s]\n", format, str0);
396  printf(" G[%s]\n", str1);
397  printf(" B[%s]\n", str2);
398  ++tp_bad;
399  }
400  else
401  {
402  ++tp_good;
403  if(display_good)
404  {
405  printf("OK: [%s], [%s]\n", format, str0);
406  printf(" G[%s]\n", str1);
407  }
408  }
409  }
410  fflush(stdout);
411  return;
412  fflush(stdout);
413 }
414 
415 
416 // =============================================
422 MEMSPACE
423 void random_tests(int flag, char *size)
424 {
425  int snum;
426  int inum;
427  long lnum;
428  long long llnum;
429  double dnum, scale;
430 
431  int width,prec;
432  int exp10;
433  int shift;
434  int precf;
435  double sign;
436  int digits;
437  int dotf;
438  int signind;
439  char *signop = "+- 0";
440  char format[1024];
441  char tmp[1024];
442 
443  memset(format,0,128);
444 
445  if(drand48() >= .5)
446  sign = 1.0;
447  else
448  sign = -1.0;
449 
450  if(drand48() >= .5)
451  precf = 1;
452  else
453  precf = 0;
454  if(drand48() >= .5)
455  dotf = 1;
456  else
457  dotf = 0;
458  signind = drand48() * 3.99999;
459 
460 //printf("num:%ld\n",num);
461 
462 // With f we limit the exponent to +/-2 ** sizeof(long long)
463  if(flag == 'e' || flag == 'f' )
464  {
465 /*
466  * Single mantissa 24bits base10 digits 7.22
467  * exponent 8bits base10 exponent 37
468  * Double mantissa 53bits base10 digits 15.95
469  * exponent 11bits base10 exponent 307
470  */
471 
472 // We only test exponent to +/- digits * 2
473 // If we test numbers greater then (10 ** digits) we start getting
474 // roundoff/truncation errors
475 //
476 // Glibc printf uses extended precision functions (ie. > double size)
477 
478  if(sizeof(double) == 8)
479  {
480  digits = 16;
481  }
482  else if(sizeof(double) == 4)
483  {
484  digits = 7;
485  }
486  else
487  {
488  fprintf(stderr,"Unexpected size of double:%d\n",(int)sizeof(double));
489  exit(1);
490  }
491  width = drand48() * 2.0 * digits;
492  prec = drand48() * 2.0 * digits;
493  if(precf || dotf)
494  snprintf(format,sizeof(format)-1, "%%%c%d.%d%c", signop[signind], width, prec, flag);
495  else
496  snprintf(format,sizeof(format)-1, "%%%c%d%c", signop[signind], width, flag);
497 
498  exp10 = ((drand48() * 2.0) - 1.0) * (double) (digits * 2);
499  scale = iexp(10.0, exp10);
500  dnum = ( sign * drand48() * scale);
501  tp(format, dnum);
502  }
503  else /* ASSUME integer or long arguments */
504  {
505  if(strcmp(size,"short") == 0)
506  {
507  width = drand48() * (double)(sizeof(short) * 8)/3.321928095;
508  prec = drand48() * (double)(sizeof(short) * 8)/3.321928095;
509  shift = drand48() * (double) sizeof(int) * 8;
510  scale = pow(2.0, shift);
511  inum = (int) ( sign * drand48() * scale);
512  if(precf || dotf)
513  snprintf(format,sizeof(format)-1, "%%%c%d.%dh%c", signop[signind], width, prec, flag);
514  else
515  snprintf(format,sizeof(format)-1, "%%%c%dh%c", signop[signind], width, flag);
516  tp(format, inum);
517  }
518  else if(strcmp(size,"int") == 0)
519  {
520  width = drand48() * (double)(sizeof(int) * 8)/3.321928095;
521  prec = drand48() * (double)(sizeof(int) * 8)/3.321928095;
522  shift = drand48() * (double) sizeof(int) * 8;
523  scale = pow(2.0, shift);
524  inum = (int) ( sign * drand48() * scale);
525  if(precf || dotf)
526  snprintf(format,sizeof(format)-1, "%%%c%d.%d%c", signop[signind], width, prec, flag);
527  else
528  snprintf(format,sizeof(format)-1, "%%%c%d%c", signop[signind], width, flag);
529  tp(format, inum);
530  }
531  else if(strcmp(size,"long") == 0)
532  {
533  width = drand48() * (double)(sizeof(long) * 8)/3.321928095;
534  prec = drand48() * (double)(sizeof(long) * 8)/3.321928095;
535  shift = drand48() * (double) sizeof(long) * 8;
536  scale = pow(2.0, shift);
537  lnum = (long) ( sign * drand48() * scale);
538  if(precf || dotf)
539  snprintf(format,sizeof(format)-1, "%%%c%d.%dl%c", signop[signind], width, prec, flag);
540  else
541  snprintf(format,sizeof(format)-1, "%%%c%dl%c", signop[signind], width, flag);
542  tp(format, lnum);
543  }
544  else if(strcmp(size,"long long") == 0)
545  {
546  width = drand48() * (double)(sizeof(long long) * 8)/3.321928095;
547  prec = drand48() * (double)(sizeof(long long) * 8)/3.321928095;
548  shift = drand48() * (double) sizeof(long long) * 8;
549  scale = pow(2.0, shift);
550  llnum = (long) ( sign * drand48() * scale);
551  if(precf || dotf)
552  snprintf(format,sizeof(format)-1, "%%%c%d.%dll%c", signop[signind], width, prec, flag);
553  else
554  snprintf(format,sizeof(format)-1, "%%%c%dll%c", signop[signind], width, flag);
555  tp(format, llnum);
556  }
557  else
558  {
559  fprintf(stderr,"random_tests: bad size[%s]\n", size);
560  exit(1);
561  }
562  }
563 }
564 
565 
566 // =============================================
570 void tests()
571 {
572  int i1 = -1;
573  int l1 = -1L;
574 
575  sep();
576  printf("Start of Manual tests\n");
577  tp("%-0d", 0);
578  tp("%-0u", 0);
579  tp("%-0u", 1);
580  tp("%-0u", -1);
581  tp("%00u", 0);
582  tp("%00u", 1);
583  tp("%00u", -1);
584  tp("% -.5u", 123);
585  tp("% - .5u", -123);
586  tp("% 1.5u", -6);
587  tp("%+1.4u", 372);
588  tp("%-0lu", 0);
589  tp("%-0lu", 1);
590  tp("%-0lu", -1);
591  tp("%00lu", 0);
592  tp("%00lu", 1);
593  tp("%00lu", -1);
594  tp("% -.5lu", 123);
595  tp("% - .5lu", -123);
596  tp("% 1.5lu", -6);
597  tp("%+1.4lu", 372);
598  tp("%-0ld", 0);
599  tp("%-0ld", 1);
600  tp("%-0ld", -1);
601  tp("%00ld", 0);
602  tp("%00ld", 1);
603  tp("%00ld", -1);
604  tp("% -.5ld", 123);
605  tp("% - .5ld", -123);
606  tp("% 1.5ld", -6);
607  if(display_good)
608  printf("\n");
609 
610  tp("%-0d", 0);
611  tp("%-0d", 1);
612  tp("%-0d", -1);
613  tp("%00d", 0);
614  tp("%00d", 1);
615  tp("%00d", -1);
616  tp("% -.5d", 123);
617  tp("% - .5d", -123);
618  tp("% 1.5d", -6);
619  tp("%+1.4d", 372);
620  tp("%+03d", 0);
621  tp("%+03d", -1);
622  tp("%+03d", 1);
623  tp("%+03.0d", 0);
624  tp("%+03.0d", -1);
625  tp("%+03.0d", 1);
626  tp("%-+03d", 0);
627  tp("%-+03d", -1);
628  tp("%-+03d", 1);
629  tp("%-+03.0d", 0);
630  tp("%-+03.0d", -1);
631  tp("%-+03.0d", 1);
632  if(display_good)
633  printf("\n");
634 
635  tp("%+0f", -0.196764);
636  tp("%08.0f", 1.5);
637  tp("%08.0f", -1.5);
638  tp("%08.4f", 0.0);
639  tp("%30.2f", 0.123456789012345678901234567890);
640  tp("%30.2f", 0.00000000000123456789012345678901234567890);
641  tp("%+30.15f", 0.00000000000123456789012345678901234567890);
642  tp("%+030.15f", 0.00000000000123456789012345678901234567890);
643  tp("% 30.15f", 0.00000000000123456789012345678901234567890);
644  tp("%+30.15f", 123456.789012345678901234567890);
645  tp("%+030.15f", 123456.789012345678901234567890);
646  tp("%+30.15f", -123456.789012345678901234567890);
647  tp("%+030.15f", -123456.789012345678901234567890);
648  tp("%+15.13f", -0.0085833);
649  tp("%+15.13f", 0.0085833);
650  tp("%+15.13f", 0.085833);
651  tp("%+15.13f", 0.85833);
652  tp("%+15.13f", 8.5833);
653  tp("%+15.13f", 85.833);
654  tp("%+15.13f", 123456789012345678901234567890.159265358979);
655  tp("%+15.2f", 123456789012345678901234567890.159265358979);
656  tp("%15.2f", 123456789012345678901234567890.159265358979);
657  tp("%f", 123456789012345678901234567890.159265358979);
658  tp("%08.0f", 1.0);
659  tp("%08.0f", -1.0);
660  tp("%f", 0.0);
661  tp("%8.2f", 0.0);
662  tp("%08.4f", 12.89);
663  tp("%08.4f", -12.89);
664  tp("%.2f", 1234567.89);
665  tp("%.2f", -1234567.89);
666  tp("%+.2f", 1234567.89);
667  tp("%+.2f", -1234567.89);
668  tp("% .2f", 1234567.89);
669  tp("%08.4f", 0.0);
670  tp("%+014.8f", 3.14159265358979);
671  tp("%+14.8f", 3.141);
672  tp("% .2f", -1234567.89);
673  if(display_good)
674  printf("\n");
675 
676  tp("%015e", -314.159265358979);
677  tp("%020.5e", 314.159265358979);
678  tp("%020.5e", -314.159265358979);
679  tp("%-+015.4e", 314.159265358979);
680  tp("%-+015.4e", -314.159265358979);
681  tp("%-+025.10e", 314.159265358979);
682  tp("%-+025.10e", -314.159265358979);
683  tp("%-+25.10e", 314.159265358979);
684  tp("%-+25.10e", -314.159265358979);
685  tp("%+25.10e", 314.159265358979);
686  tp("%+25.10e", -314.159265358979);
687  tp("% 015.4e", 314.159265358979);
688  tp("% 015.4e", -314.159265358979);
689  tp("%015e", -314.159265358979);
690  tp("%020.5e", 314.159265358979e-17);
691  tp("%020.5e", -314.159265358979e-17);
692  tp("%-+015.4e", 314.159265358979e-17);
693  tp("%-+015.4e", -314.159265358979e-17);
694  tp("%-+025.10e", 314.159265358979e-17);
695  tp("%-+025.10e", -314.159265358979e-17);
696  tp("%-+25.10e", 314.159265358979e-17);
697  tp("%-+25.10e", -314.159265358979e-17);
698  tp("%+25.10e", 314.159265358979e-17);
699  tp("%+25.10e", -314.159265358979e-17);
700  tp("% 015.4e", 314.159265358979e-17);
701  tp("%010.5e", 314.159265358979e-17);
702  tp("%010.5e", -314.159265358979e-17);
703  tp("%010.5e", 123456789012345678901234567890.159265358979);
704  if(display_good)
705  printf("\n");
706 
707  tp("%e", 314.159265358979);
708  tp("%e", -314.159265358979);
709  tp("%+e", -314.159265358979);
710  tp("% e", 314.159265358979);
711  tp("%-+e", 314.159265358979);
712  tp("%-+e", -314.159265358979);
713  tp("%-+15.4e", 314.159265358979);
714  tp("%-+15.4e", -314.159265358979);
715  tp("%-+15e", 314.159265358979);
716  tp("%-+15e", -314.159265358979);
717  tp("%15e", 314.159265358979);
718  tp("%15e", -314.159265358979);
719  tp("%20.5e", 314.159265358979);
720  tp("%20.5e", -314.159265358979);
721  tp("%08.4e", 314.159265358979);
722  tp("%08.4e", -314.159265358979);
723  tp("%-+08.4e", 314.159265358979);
724  tp("%-+08.4e", -314.159265358979);
725  tp("% 08.4e", 314.159265358979);
726  tp("% 08.4e", -314.159265358979);
727  tp("%10.5e", 314.159265358979);
728  tp("%10.5e", -314.159265358979);
729  tp("%10.5e", 123456789012345678901234567890.159265358979);
730  tp("%10.10e", 123456789012345678901234567890.159265358979);
731  tp("%10.15e", 123456789012345678901234567890.159265358979);
732  tp("%10.20e", 123456789012345678901234567890.159265358979);
733  tp("%10.20e", 123456789012345678901234567890.159265358979e-50);
734  tp("%10.20e", 123456789012345678901234567890.159265358979e+50);
735  tp("%10.20e", 123456789012345678901234567890.159265358979e-100);
736  tp("%10.20e", 123456789012345678901234567890.159265358979e+100);
737  if(display_good)
738  printf("\n");
739 
740  tp("%c", 'a');
741  tp("%-5c", 'a');
742  tp("%5c", 'a');
743  if(display_good)
744  printf("\n");
745  tp("-20.2s", "abc");
746  tp("10.5s", "abc");
747  if(display_good)
748  printf("\n");
749  printf("End of Manual tests\n");
750  sep();
751  printf("\n");
752 }
753 
754 
758 #define MAXSTR 256
759 int main(int argc, char *argv[])
760 {
761 
762  uint8_t str[MAXSTR+1];
763  long lnum, mask;
764  int i;
765  int k;
766  int size;
767 #ifdef __SIZEOF_INT128__
768  __uint128_t num128;
769 #endif
770 
771  f_t f;
772 
773  char *intops = "duxXo";
774  char *sizeops[] = { "short", "int", "long", "long long", NULL };
775  char *floatops = "fe";
776 
777  sep();
778  printf("Start of Manual tests\n");
779 
780 // Test basic type sizes
781  t_printf("sizeof (double) = %d\n", sizeof (double ) );
782  t_printf("sizeof (float) = %d\n", sizeof (float ) );
783 #ifdef __SIZEOF_INT128__
784  t_printf("sizeof (__uint128_t) = %d\n", sizeof (__uint128_t) );
785 #endif
786  t_printf("sizeof (long long) = %d\n", sizeof (long long ) );
787  t_printf("sizeof (long) = %d\n", sizeof (long ) );
788  t_printf("sizeof (short) = %d\n", sizeof (short) );
789  t_printf("sizeof (int) = %d\n", sizeof (int ) );
790  t_printf("sizeof (char) = %d\n", sizeof (char ) );
791  sep();
792  printf("\n");
793 
794 #ifdef __SIZEOF_INT128__
795  sep();
796  printf("Start of 128 bit int tests\n");
797 // There are no 128bit int constants in gcc - sigh
798  num128 = 1;
799  for(i=0;i<128;++i)
800  {
801  t_printf("2**%03d = [%I128d]\n", i, num128);
802  fflush(stdout);
803  num128 <<= 1;
804  }
805  sep();
806  printf("\n");
807  sep();
808  printf("Start of 128 bit int tests - 40 field width\n");
809  num128 = 1;
810  for(i=0;i<128;++i)
811  {
812  t_printf("2**%03d = [%40I128d]\n", i, num128);
813  fflush(stdout);
814  num128 <<= 1;
815  }
816  sep();
817  printf("\n");
818  sep();
819  printf("Start of 128 bit int tests - 40 field width and leading 0's\n");
820  num128 = 1;
821  for(i=0;i<128;++i)
822  {
823  t_printf("2**%03d = [%+040I128d]\n", i, num128);
824  fflush(stdout);
825  num128 <<= 1;
826  }
827  sep();
828  printf("\n");
829 #endif
830 
831  display_good = 0;
832  tests();
833 
834  printf("\n\n");
835  printf("Start of random tests\n");
836 
837  display_good = 0;
838  for(size=0;sizeops[size];++size)
839  {
840  for(k=0;intops[k];++k)
841  {
842  tp_good = 0;
843  tp_bad = 0;
844  sep();
845  printf("Start:(%c:%s)\n", intops[k], sizeops[size]);
846  for(i=0;i<1000000;++i)
847  random_tests(intops[k], sizeops[size]);
848  printf("End: (%c:%s)\n", intops[k], sizeops[size]);
849  printf("Good:%ld, Bad:%ld, fmt:%ld\n", tp_good, tp_bad, tp_fmt);
850  sep();
851  }
852  }
853 
854  display_good = 0;
855  for(k=0;floatops[k];++k)
856  {
857  tp_good = 0;
858  tp_bad = 0;
859  sep();
860  printf("Start:(%c)\n", floatops[k]);
861  for(i=0;i<1000000;++i)
862  random_tests(floatops[k], "");
863  printf("End: (%c)\n", floatops[k]);
864  printf("Good:%ld, Bad:%ld, fmt:%ld\n", tp_good, tp_bad, tp_fmt);
865  sep();
866  }
867  printf("\n");
868  printf("Random done\n");
869 
870  sep();
871  printf("testing binary leading 1's\n");
872  lnum = 0;
873  lnum = ~lnum;
874  mask = 1;
875  while(mask)
876  {
877  lnum &= ~mask;
878  mask <<= 1;
879  tp("%016lx", lnum);
880  tp("%019ld", lnum);
881  tp("%022lo", lnum);
882 
883  }
884  sep();
885  printf("testing binary trailing 1's\n");
886  lnum = 0;
887  mask = 1;
888  while(mask)
889  {
890  lnum |= mask;
891  mask <<= 1;
892  tp("%016lx", lnum);
893  tp("%019ld", lnum);
894  tp("%022lo", lnum);
895  }
896 
897  sep();
898  printf("testing base 10 9's\n");
899  lnum = 9;
900  while(1)
901  {
902  if(lnum & (1L << ((sizeof(lnum)*8)-1)))
903  break;
904  tp("%016lx", lnum);
905  tp("%019ld", lnum);
906  tp("%022lo", lnum);
907  lnum *= 10;
908  lnum += 9;
909 
910  }
911  printf("\n");
912  sep();
913  return(0);
914 }
915 #endif
_printf_t::buffer
void * buffer
Definition: mathio.h:83
printf
MEMSPACE int printf(const char *format,...)
stderr
#define stderr
Definition: posix.h:275
_printf_t::put
void(* put)(struct _printf_t *, char)
Definition: mathio.h:82
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
strtoll
MEMSPACE long long strtoll(const char *nptr, char **endptr, int base)
Convert ASCII string to number in a given base.
Definition: mathio.c:187
putchar
int putchar(int c)
put a character to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:363
fprintf
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
Definition: posix.c:2533
iexp
MEMSPACE double iexp(double num, int exp)
_printf_t
undefine any potential macro version of these functions
Definition: mathio.h:80
_putc_buffer_fn
MEMSPACE void _putc_buffer_fn(struct _printf_t *p, char ch)
_putc_buffer_fn - character output to a string buffer Used by snprintf and vsnprintf You can make _pr...
Definition: printf.c:1187
_printf_t::sent
int sent
Definition: mathio.h:85
NULL
#define NULL
Definition: user_config.h:85
strcmp
MEMSPACE int WEAK_ATR strcmp(const char *str, const char *pat)
Compare two strings.
Definition: stringsup.c:278
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
stdout
#define stdout
Definition: posix.h:274
sep
MEMSPACE void sep()
print seperator
Definition: parsing.c:35
main
int main(void)
main() for gpib project
Definition: main.c:507
f_t
format specifier flags
Definition: mathio.h:89
mathio.h
Math IO functions, and verious conversion code with floating point support.
_printf_t::len
int len
Definition: mathio.h:84
vsnprintf
MEMSPACE int vsnprintf(char *str, size_t size, const char *format, va_list va)
vsnprintf function
Definition: printf.c:1220
snprintf
#define snprintf(s, size, format, args...)
Definition: user_config.h:72
_printf_fn
MEMSPACE void _printf_fn(printf_t *fn, __memx const char *fmt, va_list va)
vsnprintf function
Definition: printf.c:806
isdigit
MEMSPACE int WEAK_ATR isdigit(int c)
test if a character is a digit
Definition: stringsup.c:40