58 long long numcmp(uint8_t *str1, uint8_t *str2,
int max)
62 uint8_t n1[64+2],n2[64+2];
68 long long diff, l1,l2;
70 uint8_t *save1 = str1;
71 uint8_t *save2 = str2;
83 printf(
"WARN: length mismatch (%d) != (%d)\n",
85 printf(
" str1:[%s]\n", save1);
86 printf(
" str2:[%s]\n", save2);
91 while( (c1 = *str1) && (c2 = *str2) )
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);
111 if(c1 ==
'.' || c1 ==
' ' || c1 ==
'-' || c1 ==
'+')
121 while( (c1 = *str1) && (c2 = *str2) )
123 if( c1 ==
'.' && c2 ==
'.' )
134 if(!nzflag && (c1 !=
'0' || c2 !=
'0'))
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);
168 if(c1 ==
'e' || c1 ==
'E')
170 if(
strcmp(str1,str2) != 0)
172 printf(
"WARN: exponent mismatch at offset:(%d)\n", count);
173 printf(
" str1:[%s]\n", save1);
174 printf(
" str2:[%s]\n", save2);
196 static void _putc_fn(
struct _printf_t *p,
char ch)
207 int t_printf(
const char *format, ...)
217 va_start(va, format);
234 int t_vsnprintf(
char* str,
size_t size,
const char *format, va_list va)
259 printf(
"==============================\n");
263 int display_good = 0;
274 void tp(
const char *format, ...)
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);
303 printf(
"ERROR: empty format\n");
320 if(f ==
'l' || f ==
'h')
332 va_start(va, format);
338 va_start(va, format);
344 va_start(va, format);
345 len = t_vsnprintf(str2,
sizeof(str2)-1, format, va);
350 if(f ==
'g' || f ==
'G' || f ==
'e' || f ==
'E' || f ==
'f' || f ==
'F')
358 if(
sizeof(
double) == 8)
360 else if(
sizeof(
double) == 4)
364 fprintf(
stderr,
"Unexpected size of double:%d\n", (
int)
sizeof(
double));
369 error = numcmp(str1,str2,digits);
373 if(error < 0 || error > 14LL)
375 printf(
"ERROR: [%s], [%s]\n", format, str0);
378 printf(
" error:%lld\n", error);
386 printf(
"OK: [%s], [%s]\n", format, str0);
393 if(
strcmp(str1,str2) != 0)
395 printf(
"ERROR: [%s], [%s]\n", format, str0);
405 printf(
"OK: [%s], [%s]\n", format, str0);
423 void random_tests(
int flag,
char *size)
439 char *signop =
"+- 0";
443 memset(format,0,128);
458 signind = drand48() * 3.99999;
463 if(flag ==
'e' || flag ==
'f' )
478 if(
sizeof(
double) == 8)
482 else if(
sizeof(
double) == 4)
488 fprintf(
stderr,
"Unexpected size of double:%d\n",(
int)
sizeof(
double));
491 width = drand48() * 2.0 * digits;
492 prec = drand48() * 2.0 * digits;
494 snprintf(format,
sizeof(format)-1,
"%%%c%d.%d%c", signop[signind], width, prec, flag);
496 snprintf(format,
sizeof(format)-1,
"%%%c%d%c", signop[signind], width, flag);
498 exp10 = ((drand48() * 2.0) - 1.0) * (double) (digits * 2);
499 scale =
iexp(10.0, exp10);
500 dnum = ( sign * drand48() * scale);
505 if(
strcmp(size,
"short") == 0)
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);
513 snprintf(format,
sizeof(format)-1,
"%%%c%d.%dh%c", signop[signind], width, prec, flag);
515 snprintf(format,
sizeof(format)-1,
"%%%c%dh%c", signop[signind], width, flag);
518 else if(
strcmp(size,
"int") == 0)
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);
526 snprintf(format,
sizeof(format)-1,
"%%%c%d.%d%c", signop[signind], width, prec, flag);
528 snprintf(format,
sizeof(format)-1,
"%%%c%d%c", signop[signind], width, flag);
531 else if(
strcmp(size,
"long") == 0)
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);
539 snprintf(format,
sizeof(format)-1,
"%%%c%d.%dl%c", signop[signind], width, prec, flag);
541 snprintf(format,
sizeof(format)-1,
"%%%c%dl%c", signop[signind], width, flag);
544 else if(
strcmp(size,
"long long") == 0)
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);
552 snprintf(format,
sizeof(format)-1,
"%%%c%d.%dll%c", signop[signind], width, prec, flag);
554 snprintf(format,
sizeof(format)-1,
"%%%c%dll%c", signop[signind], width, flag);
576 printf(
"Start of Manual tests\n");
595 tp(
"% - .5lu", -123);
605 tp(
"% - .5ld", -123);
635 tp(
"%+0f", -0.196764);
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);
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);
670 tp(
"%+014.8f", 3.14159265358979);
671 tp(
"%+14.8f", 3.141);
672 tp(
"% .2f", -1234567.89);
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);
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);
749 printf(
"End of Manual tests\n");
759 int main(
int argc,
char *argv[])
762 uint8_t str[MAXSTR+1];
767 #ifdef __SIZEOF_INT128__
773 char *intops =
"duxXo";
774 char *sizeops[] = {
"short",
"int",
"long",
"long long",
NULL };
775 char *floatops =
"fe";
778 printf(
"Start of Manual tests\n");
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) );
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 ) );
794 #ifdef __SIZEOF_INT128__
796 printf(
"Start of 128 bit int tests\n");
801 t_printf(
"2**%03d = [%I128d]\n", i, num128);
808 printf(
"Start of 128 bit int tests - 40 field width\n");
812 t_printf(
"2**%03d = [%40I128d]\n", i, num128);
819 printf(
"Start of 128 bit int tests - 40 field width and leading 0's\n");
823 t_printf(
"2**%03d = [%+040I128d]\n", i, num128);
835 printf(
"Start of random tests\n");
838 for(size=0;sizeops[size];++size)
840 for(k=0;intops[k];++k)
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);
855 for(k=0;floatops[k];++k)
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);
871 printf(
"testing binary leading 1's\n");
885 printf(
"testing binary trailing 1's\n");
898 printf(
"testing base 10 9's\n");
902 if(lnum & (1L << ((
sizeof(lnum)*8)-1)))