@@ -45,7 +45,6 @@ void test_char(TestFunction check, ExceptionTest check_exception) {
45
45
46
46
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
47
47
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
48
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
49
48
50
49
// *** sign ***
51
50
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
@@ -87,7 +86,6 @@ void test_char(TestFunction check, ExceptionTest check_exception) {
87
86
check (SV (" {__'a': 'A'___, __'b': 'B'___, __'c': 'C'___}" ), SV (" {::_^{}}" ), input, 13 );
88
87
check (SV (" {#####'a': 'A', #####'b': 'B', #####'c': 'C'}" ), SV (" {::#>{}}" ), input, 13 );
89
88
90
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
91
89
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
92
90
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
93
91
@@ -157,7 +155,6 @@ void test_char_to_wchar(TestFunction check, ExceptionTest check_exception) {
157
155
158
156
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
159
157
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
160
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
161
158
162
159
// *** sign ***
163
160
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
@@ -198,7 +195,6 @@ void test_char_to_wchar(TestFunction check, ExceptionTest check_exception) {
198
195
check (SV (" {__'a': 'A'___, __'b': 'B'___, __'c': 'C'___}" ), SV (" {::_^{}}" ), input, 13 );
199
196
check (SV (" {#####'a': 'A', #####'b': 'B', #####'c': 'C'}" ), SV (" {::#>{}}" ), input, 13 );
200
197
201
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
202
198
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
203
199
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
204
200
@@ -267,7 +263,6 @@ void test_bool(TestFunction check, ExceptionTest check_exception) {
267
263
268
264
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
269
265
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
270
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
271
266
272
267
// *** sign ***
273
268
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
@@ -308,7 +303,6 @@ void test_bool(TestFunction check, ExceptionTest check_exception) {
308
303
check (SV (" {_false: 0_, _true: 42_, _true: 1__}" ), SV (" {::_^{}}" ), input, 10 );
309
304
check (SV (" {##false: 0, ##true: 42, ###true: 1}" ), SV (" {::#>{}}" ), input, 10 );
310
305
311
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
312
306
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
313
307
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
314
308
@@ -369,7 +363,6 @@ void test_int(TestFunction check, ExceptionTest check_exception, auto&& input) {
369
363
370
364
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
371
365
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
372
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
373
366
374
367
// *** sign ***
375
368
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
@@ -410,7 +403,6 @@ void test_int(TestFunction check, ExceptionTest check_exception, auto&& input) {
410
403
check (SV (" {_-42: 42__, __1: -1___, _42: -42__}" ), SV (" {::_^{}}" ), input, 10 );
411
404
check (SV (" {###-42: 42, #####1: -1, ###42: -42}" ), SV (" {::#>{}}" ), input, 10 );
412
405
413
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
414
406
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
415
407
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
416
408
@@ -478,7 +470,6 @@ void test_floating_point(TestFunction check, ExceptionTest check_exception) {
478
470
479
471
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
480
472
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
481
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
482
473
483
474
// *** sign ***
484
475
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
@@ -519,7 +510,6 @@ void test_floating_point(TestFunction check, ExceptionTest check_exception) {
519
510
check (SV (" {_-42: 42__, __1: -1___}" ), SV (" {::_^{}}" ), input, 10 );
520
511
check (SV (" {###-42: 42, #####1: -1}" ), SV (" {::#>{}}" ), input, 10 );
521
512
522
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
523
513
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
524
514
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
525
515
@@ -582,7 +572,6 @@ void test_pointer(TestFunction check, ExceptionTest check_exception) {
582
572
583
573
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
584
574
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
585
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
586
575
587
576
// *** sign ***
588
577
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:#}" ), input);
@@ -621,7 +610,6 @@ void test_pointer(TestFunction check, ExceptionTest check_exception) {
621
610
check (SV (" {__0x0: 0x0___}" ), SV (" {::_^{}}" ), input, 13 );
622
611
check (SV (" {#####0x0: 0x0}" ), SV (" {::#>{}}" ), input, 13 );
623
612
624
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
625
613
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
626
614
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
627
615
@@ -685,7 +673,6 @@ void test_string(TestFunction check, ExceptionTest check_exception) {
685
673
686
674
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
687
675
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
688
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
689
676
690
677
// *** sign ***
691
678
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:#}" ), input);
@@ -724,7 +711,6 @@ void test_string(TestFunction check, ExceptionTest check_exception) {
724
711
check (SV (R"( {__"hello": "HELLO"___, __"world": "WORLD"___})" ), SV (" {::_^{}}" ), input, 21 );
725
712
check (SV (R"( {#####"hello": "HELLO", #####"world": "WORLD"})" ), SV (" {::#>{}}" ), input, 21 );
726
713
727
- check_exception (" The fill option contains an invalid value" , SV (" {:::<}" ), input);
728
714
check_exception (" The format string contains an invalid escape sequence" , SV (" {::}<}" ), input);
729
715
check_exception (" The fill option contains an invalid value" , SV (" {::{<}" ), input);
730
716
@@ -788,7 +774,6 @@ void test_status(TestFunction check, ExceptionTest check_exception) {
788
774
789
775
check_exception (" The format string contains an invalid escape sequence" , SV (" {:}<}" ), input);
790
776
check_exception (" The fill option contains an invalid value" , SV (" {:{<}" ), input);
791
- check_exception (" The fill option contains an invalid value" , SV (" {::<}" ), input);
792
777
793
778
// *** sign ***
794
779
check_exception (" The format specifier should consume the input or end with a '}'" , SV (" {:-}" ), input);
0 commit comments