-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit_test_results.txt
2267 lines (2016 loc) · 130 KB
/
unit_test_results.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==========================================================================================
Regression Tests on Fixed Bugs
Thu Mar 24 03:33:37 2011
TEST
------------------------------------------------------------------------------------------
-- alexeevm:
3022603 0.49.2 Using external buffer with Quex lexer
bug-3022603.sh ....................................................[OK]
3025173 0.49.2 Custom Token struct for quex
bug-3025173.sh ....................................................[OK]
3032877 -b, --buffer-element-size enhancement
feature-3032877.sh normal .........................................[OK]
icu ............................................[OK]
codec ..........................................[OK]
-- attardi:
2001602 RE matching UTF8 l quote uno
bug-2001602.sh iconv ..............................................[OK]
icu ................................................[OK]
codec ..............................................[OK]
2001787 RE Problem with inverted whitespace
bug-2001787.sh iconv ..............................................[OK]
icu ................................................[OK]
2002070 Output buffer overflow
bug-2002070.sh iconv ..............................................[OK]
icu ................................................[OK]
2002474 Segmentation Fault while UTF-8 Decoding
bug-2002474.sh iconv ..............................................[OK]
icu ................................................[OK]
codec ..............................................[OK]
2004927 UTF-8 RE Extra Comma Matched
bug-2004927.sh iconv ..............................................[OK]
icu ................................................[OK]
codec ..............................................[OK]
2599228 0.36.1 QUEX_CORE variable not adapted to installed version
bug-2599228.sh Developper .........................................[OK]
Else ...............................................[OK]
FilesExist .........................................[OK]
2619679 QUEX_BUFFER_ASSERT_CONTENT_CONSISTENCY redefined
bug-2619679.sh ....................................................[OK]
2937342 0.47.3 Regular expression parsing -- closing bracket.
bug-2937342.sh 1 ..................................................[OK]
2 ..................................................[OK]
3 ..................................................[OK]
4 ..................................................[OK]
5 ..................................................[OK]
3025852 0.49.2 Instatiation of inheritable-only-modes
bug-3025852.sh ....................................................[OK]
-- fschaef:
1948456 (feature) Inheritance Info
feature-1948456.sh ................................................[OK]
1952133 0.24.11 Crash in Buffer Handling with tiny buffer size
bug-1952133.sh 29 .................................................[OK]
30 .................................................[OK]
127 ................................................[OK]
128 ................................................[OK]
129 ................................................[OK]
2499 ...............................................[OK]
2500 ...............................................[OK]
2501 ...............................................[OK]
2502 ...............................................[OK]
1952747 TKN_TERMINATION
bug-1952747.sh ....................................................[OK]
2078087 (feature) Mode transition shortcuts GOTO, GOSUB, GOUP
feature-2078087.sh GOTO ...........................................[OK]
GOTO-2 .........................................[OK]
GOSUB ..........................................[OK]
GOSUB-2 ........................................[OK]
2161098 0.32.1 Nested-Range Skipper Line Number Counter
bug-2161098-x.sh c_comments .......................................[OK]
shell_comments ...................................[OK]
funny_comments ...................................[OK]
2161098 0.32.1 Range Skipper Line Number Counter
bug-2161098.sh c_comments .........................................[OK]
shell_comments .....................................[OK]
funny_comments .....................................[OK]
2209142 0.33.1-pre-release
bug-2209142.sh error ..............................................[OK]
good ...............................................[OK]
2277660 character count pre-determination
bug-2277660.sh ....................................................[OK]
2349109 0.33.5 Line and Column number counts with Set skippers
bug-2349109.sh newline-skipper ....................................[OK]
newline-skipper-utf8 ...............................[OK]
non-newline-skipper ................................[OK]
2635012 0.36.4 Include Stack Disablement
bug-2635012.sh ....................................................[OK]
3038088 token_id = numeric value
feature-3038088.sh ................................................[OK]
3039173 On Mismatch
feature-3039173.sh ................................................[OK]
3082041 0.52.4 Buffer Memory Size not Accepted
bug-3082041.sh ....................................................[OK]
3102035 0.55.1 Weird Setup causes Duplicate State Label
bug-3102035.sh 1 ..................................................[OK]
2 ..................................................[OK]
3 ..................................................[OK]
4 ..................................................[OK]
5 ..................................................[OK]
3157923 Memory Leak by Components
bug-3157923.sh ....................................................[OK]
-- inhenriksen:
3164355 C with whitespace character gives bad exception
bug-3164355.sh ....................................................[OK]
-- jmarsik:
0.58.2 history effect in UCS database interface
bug-3235790.sh ....................................................[OK]
3115741 0.55.4 move_backward triggers assert
bug-3115741.sh general ............................................[OK]
undo-line-colum-count ..............................[OK]
-- kromaks:
2971198 0.48.1 Parsing long REs
bug-2971198.sh ....................................................[OK]
-- mabraham:
3109479 0.55.2 Error Transition to Forward Init State
bug-3109479.sh 1 ..................................................[OK]
2 ..................................................[OK]
3 ..................................................[OK]
4 ..................................................[OK]
-- marcoantonelli:
2219383 Parse foreign token id file
feature-2219383.sh ................................................[OK]
2251359 (feature) Single-character token without name
feature-2251359.sh good ...........................................[OK]
1 ..............................................[OK]
2 ..............................................[OK]
3 ..............................................[OK]
4 ..............................................[OK]
5 ..............................................[OK]
6 ..............................................[OK]
2257908 Quex does not terminate lexer generation
bug-2257908.sh ....................................................[OK]
2262537 (feature) Allow Nothing is fine in define section
feature-2262537.sh ................................................[OK]
-- nazim-can-bedir:
2896732 0.46.2 - Memory leak
bug-2896732.sh ....................................................[OK]
-- nobody:
2395200 assert in QuexBufferFiller_load_forward (The StrangeStream Issue)
bug-2395200.sh error-lexer ........................................[OK]
lexer ..............................................[OK]
2841726 0.44.2 Unknown exception on unicode properties
bug-2841726.sh ....................................................[OK]
2891125 0.45.1 bug in -- version
bug-2891125.sh ....................................................[OK]
2894648 0.46.2 Backslashed . is unknown to quex
bug-2894648.sh ....................................................[OK]
-- ollydbg:
3142578 Output token identifier definition
feature-3142578.sh ................................................[OK]
-- otsakiridis:
3075601 0.52.1 Pre-Context with Codec utf8
bug-3075601.sh utf8 ...............................................[OK]
utf16 ..............................................[OK]
-- petulda:
3178600 0.58.1 Last appeared char not stored when switching modes
bug-3178600.sh ....................................................[OK]
-- prade2p:
2914877 0.47.3 RE Exception on [10000-10FFFF]
bug-2914877.sh ....................................................[OK]
-- rmanoj-oss:
3079986 Allow namespace delimiter in --token-prefix for C++
feature-3079986.sh nnn ............................................[OK]
nnc ............................................[OK]
ncc ............................................[OK]
ccc ............................................[OK]
-- rofr3:
3009642 0.48.3 Begin of Line Precondition flag
bug-3009642.sh ....................................................[OK]
-- sphericalcow:
1885304 Problems with files with DOS CR/LF line endings
bug-1885304.sh ..................................................[FAIL]
1885846 Empty RE in define section
bug-1885846.sh ....................................................[OK]
1885855 P{ ...} syntax does not work outside of [
bug-1885855.sh ....................................................[OK]
1887163 Single state mode causes quex to crash
bug-1887163.sh ....................................................[OK]
1889086 Single state mode causes quex to crash
bug-1889086.sh ....................................................[OK]
1889089 Single state mode causes quex to crash
bug-1889089.sh ....................................................[OK]
1889321 Quex does not handle actions including quote literal
bug-1889321.sh ....................................................[OK]
1889692 0.19.4 does not gracefully handle unbalanced quotations
bug-1889692.sh ....................................................[OK]
1889702 0.19.4 forbids derived modes that only add event handlers
bug-1889702.sh ....................................................[OK]
1889871 0.19.4 crashes if [] expression contains unescaped -
bug-1889871.sh ....................................................[OK]
1889877 '*' or '+' without prececing expression crashes 0.19.4
bug-1889877.sh ....................................................[OK]
1889892 x, X or followed by a non-hex digit crashes 0.19.4
bug-1889892.sh ....................................................[OK]
1890828 0.19.9 crashes trying to call error handler in several cases
bug-1890828.sh ....................................................[OK]
1890876 {} handled oddly in define blocks in 0.19.9
bug-1890876.sh ....................................................[OK]
1891254 Lone ? as regex does not give an error in 0.19.9
bug-1891254.sh ....................................................[OK]
1892227 accepted as identifiers in def
bug-1892227.sh ....................................................[OK]
1892809 0.20.4 \x, \X, \U accept too many digits
bug-1892809.sh ....................................................[OK]
1893849 0.20.5 allows engine names that are not valid identifiers
bug-1893849.sh ....................................................[OK]
1893874 Missing colon in mode definition crashes 0.20.5
bug-1893874.sh ....................................................[OK]
1893880 0.20.5 allows inheritable
bug-1893880.sh ....................................................[OK]
1894130 0.20.6 can list wrong mode as circuluar inheritance
bug-1894130.sh ....................................................[OK]
1894185 Unbalanced quote and double quote in header/init/body blocks in 0.20.6
bug-1894185.sh ....................................................[OK]
1894578 header block not added to -core-engine.cpp file in 0.20.6
bug-1894578.sh ....................................................[OK]
1895066 0.20.8 #line directive after header contents missing
bug-1895066.sh ....................................................[OK]
1895500 assertion error running generated 0.20.8 lexer with Unicode
bug-1895500.sh iconv ..............................................[OK]
icu ................................................[OK]
1898125 invalid argument for --token-id-offset can crash 0.21.4
bug-1898125.sh ....................................................[OK]
1900391 malformed --set-by-expression can crash 0.21.8
bug-1900391.sh ....................................................[OK]
1902175 invalid escape in character set expression crashes 0.21.12
bug-1902175.sh ....................................................[OK]
1905768 0.22.9 doesn't create analyzer function for event only modes
bug-1905768.sh ....................................................[OK]
1908092 0.23.5 uses --token-class without --token-class-file
bug-1908092.sh ....................................................[OK]
1908436 0.23.6 rule precedence reversed for identical patterns
bug-1908436.sh ....................................................[OK]
1935701 - 0.24.7 buffer handling size mismatch
bug-1935701.exe FILE ..............................................[OK]
fstream ...........................................[OK]
1936707 0.24.10 --plot flag doesnt seem to work
bug-1936707.sh ....................................................[OK]
1969629 0.25.4 token list with just TERMINATION treated empty
bug-1969629.sh ....................................................[OK]
2087087 0.31.1 --set-by switches suppress command error diagnostics
bug-2087087.sh ....................................................[OK]
2095970 0.31.3 Mode change w/o immediate return. w/o token queue
bug-2095970-ntq.sh Normal .........................................[OK]
NormalNoAsserts ................................[OK]
NoModeDetection ................................[OK]
NoModeDetectionNoAsserts .......................[OK]
NoModeDetection_ErrorCase ......................[OK]
2095970 0.31.3 Mode change without immediate return
bug-2095970.sh Normal .............................................[OK]
NormalNoAsserts ....................................[OK]
NoModeDetection ....................................[OK]
NoModeDetectionNoAsserts ...........................[OK]
NoModeDetection_ErrorCase ..........................[OK]
2796383 0.39.3 does not handle token_type without distinct section
bug-2796383.sh case-1 .............................................[OK]
case-2 .............................................[OK]
case-3 .............................................[OK]
case-4 .............................................[OK]
case-5 .............................................[OK]
2798423 0.39.4 token_type default __copy function does not compile
bug-2798423.sh ....................................................[OK]
2799244 0.39.5 attempts to call unimplemented token set() function
bug-2799244.sh error ..............................................[OK]
good-1 .............................................[OK]
good-2 .............................................[OK]
-- the-user-k:
3021502 0.49.2 Buffer-size gets ignored
bug-3021502.sh ....................................................[OK]
-- timdawborn:
3106424 0.55.2 --set-by-expression with inverse fails
bug-3106424.sh ....................................................[OK]
-- wryun:
2819022 0.41.2 Pre-condition match causes issues
bug-2819022.sh 0 ..................................................[OK]
1 ..................................................[OK]
2 ..................................................[OK]
3 ..................................................[OK]
2819023 0.41.2 Valid pattern definition fails
bug-2819023.sh ....................................................[OK]
2819043 0.41.2 Infinite recursion error
bug-2819043.sh ....................................................[OK]
2819045 0.41.2 Some internal assertion fails on...
bug-2819045.sh 0 ..................................................[OK]
1 ..................................................[OK]
2 ..................................................[OK]
3 ..................................................[OK]
-- yaroslav_xp:
2146712 (feature) output directory parameter for the command line
feature-2146712.sh Normal .........................................[OK]
NotExist .......................................[OK]
NoWrite ........................................[OK]
2163753 0.32.1 Incorrect on_failure behavior
bug-2163753.sh ....................................................[OK]
-- yaroslavkrv:
3097431 0.54.1 Line-Column numbers
bug-3097431.sh ....................................................[OK]
-- ymarkovitch:
3030640 0.50.1 Adding .hpp extension to generated headers
feature-3030640.sh pp .............................................[OK]
++ .............................................[OK]
xx .............................................[OK]
PlainC .........................................[OK]
PlainCpp .......................................[OK]
cc .............................................[OK]
ErrorC .........................................[OK]
ErrorCpp .......................................[OK]
3077292 0.52.3 Compilation Error With DEBUG_MODE_TRANSITIONS
bug-3077292.sh ....................................................[OK]
-- yoavg:
2974074 0.48.1 union modifies its arguments
bug-2974074.sh ....................................................[OK]
___ _ _ _
| _| / \ | | | |
| |_|/ - \ | | | |_
|_| |_|_| |_| |___|
------------------------------------------------------------------------------------------
[FAIL] bug-1885304.sh
==========================================================================================
Demo-Applications for Plain C
Thu Mar 24 02:43:49 2011
demo/C/TEST
------------------------------------------------------------------------------------------
-- Makefile Differences to C++ Version
makefile-diff.sh 000 ..............................................[OK]
001 ..............................................[OK]
002 ..............................................[OK]
003 ..............................................[OK]
005 ..............................................[OK]
006 ..............................................[OK]
007 ..............................................[OK]
008 ..............................................[OK]
009 ..............................................[OK]
010 ..............................................[OK]
011 ..............................................[OK]
012 ..............................................[OK]
-- demo/000:
Single Mode Example
000.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/001:
Multiple Modes, Mode Transitions
001.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/002:
Indentation Based Scopes
002.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/003:
Byte Order Mark (BOM) Cutting
003-bom.sh Without ................................................[OK]
UTF8-BOM ...............................................[OK]
UTF16BE-BOM ............................................[OK]
Unicode Based Lexical Analyzis (Using GNU's Lib IConv)
003.sh BPC=2 ......................................................[OK]
BPC=2_NDEBUG ...............................................[OK]
BPC=4 ......................................................[OK]
BPC=4_NDEBUG ...............................................[OK]
BPC=wchar_t ................................................[OK]
Unicode Based Lexical Analyzis (Using IBM's ICU Library)
003-icu.sh BPC=2 ..................................................[OK]
BPC=2_NDEBUG ...........................................[OK]
BPC=4 ..................................................[OK]
BPC=4_NDEBUG ...........................................[OK]
BPC=wchar_t ............................................[OK]
-- demo/004:
A C-Lexical Analyser
004.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/005:
Including Files
005.sh 1 ..........................................................[OK]
1_NDEBUG ...................................................[OK]
2 ..........................................................[OK]
2_NDEBUG ...................................................[OK]
-- demo/006:
Pseudo Ambiguous Post Conditions
006.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/007:
Miscellaneous Features
007.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/008:
Interface to Bison/Yacc (Contributed by Marco Antonelli)
008.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/009:
Strings of 'char' and 'wchar_t'
009.sh lexer ......................................................[OK]
wlexer .....................................................[OK]
-- demo/010:
Direct Buffer Access (Syntactically Chunked)
010.sh copy .......................................................[OK]
fill .......................................................[OK]
point ......................................................[OK]
copy-ez ....................................................[OK]
fill-ez ....................................................[OK]
copy-conversion ............................................[OK]
copy-conversion-direct .....................................[OK]
fill-conversion-direct .....................................[OK]
stdinlexer .................................................[OK]
re-point ...................................................[OK]
-- demo/011:
Engine Encoding (Example ISO8859-7)
011.sh iso8859-7 ..................................................[OK]
utf8 .......................................................[OK]
utf16-be ...................................................[OK]
utf16-le ...................................................[OK]
-- demo/011b:
Engine Encoding UTF16
011b.sh LE ........................................................[OK]
BE ........................................................[OK]
-- demo/012:
Single Application/Multiple Lexical Analyzers
012.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Demo-Applications for C++
Thu Mar 24 02:47:55 2011
demo/Cpp/TEST
------------------------------------------------------------------------------------------
-- Other Compilers than g++:
Intel's icpc
other-compilers-intel.sh 000 ......................................[OK]
001 ......................................[OK]
002 ......................................[OK]
003 ......................................[OK]
005 ......................................[OK]
006 ......................................[OK]
-- demo/000:
Single Mode Example
000.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/001:
Multiple Modes, Mode Transitions
001.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/002:
Indentation Based Scopes
002.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/003:
Byte Order Mark (BOM) Cutting
003-bom.sh Without ................................................[OK]
UTF8-BOM ...............................................[OK]
UTF16BE-BOM ............................................[OK]
Unicode Based Lexical Analyzis (Using GNU's Lib IConv)
003.sh BPC=2 ......................................................[OK]
BPC=2_NDEBUG ...............................................[OK]
BPC=4 ......................................................[OK]
BPC=4_NDEBUG ...............................................[OK]
BPC=wchar_t ................................................[OK]
Unicode Based Lexical Analyzis (Using IBM's ICU Library)
003-icu.sh BPC=2 ..................................................[OK]
BPC=2_NDEBUG ...........................................[OK]
BPC=4 ..................................................[OK]
BPC=4_NDEBUG ...........................................[OK]
BPC=wchar_t ............................................[OK]
-- demo/004:
A C-Lexical Analyser
004.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/005:
Including Files
005.sh 1 ..........................................................[OK]
1_NDEBUG ...................................................[OK]
2 ..........................................................[OK]
2_NDEBUG ...................................................[OK]
-- demo/006:
Pseudo Ambiguous Post Conditions
006.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/007:
Miscellaneous Features
007.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/008:
Interface to Bison/Yacc (Contributed by Marco Antonelli)
008.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
-- demo/009:
Strings of 'char' and 'wchar_t'
009.sh lexer ......................................................[OK]
wlexer .....................................................[OK]
-- demo/010:
Direct Buffer Access (Syntactically Chunked)
010.sh copy .......................................................[OK]
fill .......................................................[OK]
point ......................................................[OK]
copy-ez ....................................................[OK]
fill-ez ....................................................[OK]
copy-conversion ............................................[OK]
copy-conversion-direct .....................................[OK]
fill-conversion-direct .....................................[OK]
stdinlexer .................................................[OK]
re-point ...................................................[OK]
-- demo/011:
Engine Encoding (Example ISO8859-7)
011.sh iso8859-7 ..................................................[OK]
utf8 .......................................................[OK]
utf16-be ...................................................[OK]
utf16-le ...................................................[OK]
-- demo/011b:
Engine Encoding UTF16
011b.sh LE ........................................................[OK]
BE ........................................................[OK]
-- demo/012:
Single Application/Multiple Lexical Analyzers
012.sh NDEBUG .....................................................[OK]
DEBUG ......................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Miscellaneous Basic Tests
Thu Mar 24 02:47:56 2011
quex/TEST
------------------------------------------------------------------------------------------
-- Check if the default configuration has been updated.
check-default-configuration.sh ....................................[OK]
-- Check that 'Lexeme' macro is not used.
no-use-of-lexeme-macro.sh .........................................[OK]
-- Double Check that Exception Handlers are in place
test-exceptions-in-place.sh .......................................[OK]
-- Include Guards for C/C++
include_guard.py convention .......................................[OK]
undefinition .....................................[OK]
-- Prepare Pattern Information for Code Generation
test-coder-get_generator_input.py .................................[OK]
-- Propper undefinition of configuration parameters.
macro-check.py ....................................................[OK]
-- User defined token id file:
__parse_token_id_file
test-token_id_file-find_ids.py ....................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Check Applications of 'Did you mean'.
Thu Mar 24 02:47:59 2011
quex/TEST/did-you-mean/TEST
------------------------------------------------------------------------------------------
-- Explicit Token Type Member Assignment
token_type-member-name.sh .........................................[OK]
-- UCS Character Code Names
ucs-character-name.sh 1 ...........................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
<no file 'ADM/title.txt'>
Thu Mar 24 02:47:59 2011
quex/TEST/errors-warnings/TEST
------------------------------------------------------------------------------------------
-- Token identifier definition and orthography.
token_identifier.sh ...............................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Event Handlers
Thu Mar 24 03:31:26 2011
quex/TEST/event-handling/TEST
------------------------------------------------------------------------------------------
-- Customized on_skip_range_open event.
on_skip_range_open-customized.sh customized .......................[OK]
-- Default on_skip_range_open event.
on_skip_range_open.sh default .....................................[OK]
-- Mode Transitions:
transition-x.qx
transition-x.sh 1 .................................................[OK]
2 .................................................[OK]
3 .................................................[OK]
error .............................................[OK]
transition.qx
transition.sh 1 ...................................................[OK]
2 ...................................................[OK]
3 ...................................................[OK]
error ...............................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Include Stack Handling
Thu Mar 24 02:48:10 2011
quex/TEST/include-stack/TEST
------------------------------------------------------------------------------------------
-- Include Stack:
Misc Scenarios
queue.exe empty ...................................................[OK]
1 .......................................................[OK]
2 .......................................................[OK]
3 .......................................................[OK]
4 .......................................................[OK]
5 .......................................................[OK]
20 ......................................................[OK]
Misc Scenarios
users_token.exe empty .............................................[OK]
1 .................................................[OK]
2 .................................................[OK]
3 .................................................[OK]
4 .................................................[OK]
5 .................................................[OK]
20 ................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Indentation Based Blocks
Thu Mar 24 02:48:19 2011
quex/TEST/indentation_count/TEST
------------------------------------------------------------------------------------------
-- Bad character detection.
bad.sh default ....................................................[OK]
customized .................................................[OK]
-- Commonalities of Indentation Counter vs. Patterns
commonalities.sh 1 ................................................[OK]
2 ................................................[OK]
3 ................................................[OK]
4 ................................................[OK]
5 ................................................[OK]
6 ................................................[OK]
-- Customized Event Handlers
handlers.sh check-eof .............................................[OK]
on_dedent .............................................[OK]
on_n_dedent ...........................................[OK]
empty-lines ...........................................[OK]
on_indentation_error ..................................[OK]
-- Indentation Counting and Range Skipper
with-skip-range.sh range ..........................................[OK]
range-2 ........................................[OK]
nested_range ...................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Match Precedence in Mode Inheritance Structures
Thu Mar 24 02:48:25 2011
quex/TEST/match-precedence/TEST
------------------------------------------------------------------------------------------
-- Local variables.
local-variables.sh ................................................[OK]
-- PRIORITY-MARK or DELETION on not existing pattern.
unvalid-marks.sh PRIORITY-good ....................................[OK]
PRIORITY-fail ....................................[OK]
DELETION-good ....................................[OK]
DELETION-fail ....................................[OK]
-- Precedence:
Derived before Base
derived-before-base.sh ............................................[OK]
Larger Inheritance Tree
large-tree.sh .....................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
<no file 'ADM/title.txt'>
Thu Mar 24 02:48:26 2011
quex/TEST/misc/TEST
------------------------------------------------------------------------------------------
-- Test code comments
comment.sh ........................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
The 'Reset' Button
Thu Mar 24 02:48:36 2011
quex/TEST/reset/TEST
------------------------------------------------------------------------------------------
-- Normal Reset
lexer-x 0 .........................................................[OK]
1 .........................................................[OK]
2 .........................................................[OK]
3 .........................................................[OK]
20 ........................................................[OK]
30 ........................................................[OK]
50 ........................................................[OK]
134 .......................................................[OK]
135 .......................................................[OK]
136 .......................................................[OK]
1000 ......................................................[OK]
-- Reset w/ QuexBufferFiller:
Plain
lexer 0 ...........................................................[OK]
1 ...........................................................[OK]
2 ...........................................................[OK]
3 ...........................................................[OK]
1000 ........................................................[OK]
20 ..........................................................[OK]
30 ..........................................................[OK]
50 ..........................................................[OK]
134 .........................................................[OK]
135 .........................................................[OK]
136 .........................................................[OK]
Plain w/ Engine Codec
codec-lexer 0 .....................................................[OK]
1 .....................................................[OK]
2 .....................................................[OK]
3 .....................................................[OK]
1000 ..................................................[OK]
20 ....................................................[OK]
30 ....................................................[OK]
50 ....................................................[OK]
134 ...................................................[OK]
135 ...................................................[OK]
136 ...................................................[OK]
Plain w/ Engine Codec
icu-lexer 0 .......................................................[OK]
1 .......................................................[OK]
2 .......................................................[OK]
3 .......................................................[OK]
20 ......................................................[OK]
30 ......................................................[OK]
50 ......................................................[OK]
134 .....................................................[OK]
135 .....................................................[OK]
136 .....................................................[OK]
1000 ....................................................[OK]
Plain w/ Engine Codec
iconv-lexer 0 .....................................................[OK]
1 .....................................................[OK]
2 .....................................................[OK]
3 .....................................................[OK]
20 ....................................................[OK]
30 ....................................................[OK]
50 ....................................................[OK]
134 ...................................................[OK]
135 ...................................................[OK]
136 ...................................................[OK]
1000 ..................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
<no file 'ADM/title.txt'>
Thu Mar 24 02:48:55 2011
quex/TEST/source-package/TEST
------------------------------------------------------------------------------------------
-- Source Packager:
C
test-c.sh plain ...................................................[OK]
iconv ...................................................[OK]
icu .....................................................[OK]
codec ...................................................[OK]
codec-utf8 ..............................................[OK]
codec-utf16 .............................................[OK]
post-categorizer ........................................[OK]
no-string-accumulator ...................................[OK]
no-include-stack ........................................[OK]
no-counter ..............................................[OK]
manual-token-class ......................................[OK]
customized-token-class ..................................[OK]
C++
test-cpp.sh plain .................................................[OK]
iconv .................................................[OK]
icu ...................................................[OK]
codec .................................................[OK]
codec-utf8 ............................................[OK]
codec-utf16 ...........................................[OK]
post-categorizer ......................................[OK]
no-string-accumulator .................................[OK]
no-include-stack ......................................[OK]
no-counter ............................................[OK]
manual-token-class ....................................[OK]
customized-token-class ................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Customized Token Class
Thu Mar 24 02:48:59 2011
quex/TEST/token-class/TEST
------------------------------------------------------------------------------------------
-- Miscellaneous Sample Runs
misc.sh empty .....................................................[OK]
no-namespace ..............................................[OK]
double-colon ..............................................[OK]
token .....................................................[OK]
-- With token policy 'queue'.
simple-queue.exe ..................................................[OK]
-- With token policy 'simple'.
simple.exe ........................................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Tests related to token queues
Thu Mar 24 02:49:06 2011
quex/TEST/token-policies/TEST
------------------------------------------------------------------------------------------
-- Token Policy 'queue':
Pseudo Analysis
queue.exe .........................................................[OK]
Real Analysis
queue-real.exe ....................................................[OK]
-- Token Policy 'single':
Pseudo Analysis
users_token.exe ...................................................[OK]
Real Analysis
users_token-real.exe ..............................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
<no file 'ADM/title.txt'>
Thu Mar 24 02:49:07 2011
quex/code_base/TEST
------------------------------------------------------------------------------------------
-- data/bocu1.txt
bom.exe ...........................................................[OK]
-- StrangeStream:
char stream based.
strange_stream.exe 2 ..............................................[OK]
3 ..............................................[OK]
4 ..............................................[OK]
5 ..............................................[OK]
wchar_t stream based.
strange_wstream.exe 2 .............................................[OK]
3 .............................................[OK]
4 .............................................[OK]
5 .............................................[OK]
___ _ _
/ _ \| |/ )
( (_) | _ <
\___/|_|\_)
==========================================================================================
Lexical Analyzer Class Template
Thu Mar 24 02:49:13 2011
quex/code_base/analyzer/TEST
------------------------------------------------------------------------------------------
-- Accumulator
accumulator.exe String ............................................[OK]
Character .........................................[OK]
N-Character .......................................[OK]
N-String ..........................................[OK]
Mix ...............................................[OK]
-- Count Line and Column:
Without Indentation Count
counter-column_line.exe ...........................................[OK]
Without Indentation Count II
counter-column_line-x.exe .........................................[OK]
-- Post Categorizer:
Enter
post-categorizer-find.exe 0 .......................................[OK]
1 .......................................[OK]
2 .......................................[OK]
3 .......................................[OK]
4 .......................................[OK]
5 .......................................[OK]
6 .......................................[OK]
Enter
post-categorizer-enter.exe 1 ......................................[OK]
2 ......................................[OK]
3 ......................................[OK]