-
Notifications
You must be signed in to change notification settings - Fork 1
/
serial_results
1644 lines (1644 loc) · 157 KB
/
serial_results
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
Testing output is in /tmp/regResult/Xyce_Test/Netlists/
There are 1640 tests.
4049OSC/4049osc...................................passed (Time: 1s = 0.28cs + 1vs)
ABM/ascth.........................................passed (Time: 0s = 0.04cs + 0vs)
ABM/ddt...........................................passed (Time: 0s = 0.03cs + 0vs)
ABM/ifstatement...................................passed (Time: 0s = 0.03cs + 0vs)
ABM/meg...........................................passed (Time: 0s = 0.07cs + 0vs)
ABM/scth..........................................passed (Time: 1s = 0.07cs + 1vs)
ABM/sdt...........................................passed (Time: 0s = 0.02cs + 0vs)
ABM/smoothbsrc....................................passed (Time: 0s = 0.10cs + 0vs)
ABM/smoothbsrc2...................................passed (Time: 0s = 0.10cs + 0vs)
ABM/smoothrcconst.................................passed (Time: 0s = 0.10cs + 0vs)
ABM/stp...........................................passed (Time: 0s = 0.03cs + 0vs)
ABM_ABS/abs.......................................passed (Time: 0s = 0.02cs + 0vs)
ABM_ACOS_ASIN/acos_asin...........................passed (Time: 1s = 0.03cs + 0vs)
ABM_ATAN_TAN/atan_tan.............................passed (Time: 0s = 0.06cs + 0vs)
ABM_BREAK/break...................................passed (Time: 0s = 0.05cs + 0vs)
ABM_EXPLN/exp_ln..................................passed (Time: 0s = 0.03cs + 0vs)
ABM_FUNC/func.....................................passed (Time: 0s = 0.03cs + 0vs)
ABM_INT_FLOOR_CEIL/int_floor_ceil.................passed[sh] (Time: 0s = 0.09cs + 0vs)
ABM_INT_FLOOR_CEIL/int_floor_ceil_bsrc............passed[sh] (Time: 0s = 0.07cs + 0vs)
ABM_LOG/log.......................................passed (Time: 0s = 0.02cs + 0vs)
ABM_POW/abmpow1...................................passed[sh] (Time: 0s = 0.06cs + 0vs)
ABM_POW/abmpow2...................................passed[sh] (Time: 0s = 0.07cs + 0vs)
ABM_POW/abmpow3...................................passed[sh] (Time: 0s = 0.06cs + 0vs)
ABM_SCT/sct.......................................passed (Time: 0s = 0.03cs + 0vs)
ABM_SQRT/sqrt.....................................passed[sh] (Time: 0s = 0.07cs + 0vs)
ABM_TIME/time.....................................passed[sh] (Time: 0s = 0.07cs + 0vs)
ACtests/RC_simple.................................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/diffpair_spiceMan.........................passed[sh] (Time: 0s = 0.06cs + 0vs)
ACtests/diffpair_spiceManLIN......................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/lowpass_old...............................passed[sh] (Time: 0s = 0.06cs + 0vs)
ACtests/rca3040...................................passed[sh] (Time: 1s = 0.06cs + 0vs)
ACtests/reg0......................................passed[sh] (Time: 0s = 0.07cs + 0vs)
ACtests/bsim3/gain-stage..........................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/bsim3/gain-stage1.........................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/bsim3/step-op-amp.........................passed[sh] (Time: 0s = 0.08cs + 0vs)
ACtests/bsim3soi/gain-stagesoi....................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/bsim3soi/gain-stagesoi_default............passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/bsim4/gstage..............................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/gminstepping/opamp-vf-gstepping...........passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/gminstepping/opamp-vf.....................passed[sh] (Time: 0s = 0.07cs + 0vs)
ACtests/mos/gain-stage1...........................passed[sh] (Time: 0s = 0.06cs + 0vs)
ACtests/mos/gain-stage2...........................passed[sh] (Time: 0s = 0.04cs + 0vs)
ACtests/mos/gain-stage3...........................passed[sh] (Time: 1s = 0.04cs + 0vs)
ACtests/mos/gain-stage6...........................passed[sh] (Time: 0s = 0.05cs + 0vs)
ACtests/mos/opamp-ol..............................passed[sh] (Time: 0s = 0.06cs + 0vs)
ACtests/SANDLER7/sandler7.........................passed[sh] (Time: 0s = 0.08cs + 0vs)
ACtests/SANDLER8/sandler8.........................passed[sh] (Time: 0s = 0.06cs + 0vs)
ACtests/SANDLER9/sandler9.........................passed[sh] (Time: 0s = 0.05cs + 0vs)
AGECAP/agecap_master..............................passed[sh] (Time: 0s = 0.17cs + 0vs)
AMPMOD/amp_mod....................................passed (Time: 0s = 0.07cs + 0vs)
BINARYOPS/binary_funcs............................passed (Time: 0s = 0.03cs + 0vs)
BJT_ANALYTIC/ramp_test1...........................passed[sh] (Time: 1s = 0.37cs + 0vs)
BJT_ANALYTIC/ramp_test2...........................passed[sh] (Time: 0s = 0.06cs + 0vs)
BJT_EXTNODE/npn...................................passed[sh] (Time: 0s = 0.05cs + 0vs)
BJT_EXTNODE/npn_rb_rc_re..........................passed[sh] (Time: 0s = 0.06cs + 0vs)
BJT_EXTNODE/npn_rc_re.............................passed[sh] (Time: 0s = 0.07cs + 0vs)
BJT_IC/bjt_ic.....................................passed[sh] (Time: 0s = 0.07cs + 0vs)
BJT_IC/bjt_ic_nonzero.............................passed[sh] (Time: 0s = 0.06cs + 0vs)
BJT_OFF/bjt_off...................................passed[sh] (Time: 1s = 0.06cs + 0vs)
BJT_PSPICE_NK/bjt_test_nk.........................passed (Time: 0s = 0.03cs + 0vs)
BREAK/break.......................................passed (Time: 0s = 0.02cs + 0vs)
BSIM3_GM/nmosGm1..................................passed (Time: 0s = 0.07cs + 0vs)
BSIM3_GM/nmosGm1_rev..............................passed (Time: 0s = 0.08cs + 0vs)
BSIM3_GM/pmosGm1..................................passed (Time: 0s = 0.08cs + 0vs)
BSIM3_GM/pmosGm1_rev..............................passed (Time: 0s = 0.07cs + 0vs)
BSIM4/test1.X.....................................passed (Time: 0s = 0.06cs + 0vs)
BSIM4/test10.X....................................passed (Time: 1s = 0.06cs + 0vs)
BSIM4/test11.X....................................passed (Time: 0s = 0.07cs + 0vs)
BSIM4/test12.X....................................passed (Time: 0s = 0.07cs + 0vs)
BSIM4/test13.X....................................passed (Time: 0s = 0.08cs + 0vs)
BSIM4/test14.X....................................passed (Time: 0s = 0.08cs + 0vs)
BSIM4/test2.X.....................................passed (Time: 0s = 0.06cs + 0vs)
BSIM4/test3.X.....................................passed (Time: 1s = 0.08cs + 1vs)
BSIM4/test4.X.....................................passed (Time: 0s = 0.06cs + 0vs)
BSIM4/test5.X.....................................passed (Time: 0s = 0.08cs + 0vs)
BSIM4/test6.X.....................................passed (Time: 0s = 0.04cs + 0vs)
BSIM4/test7.X.....................................passed (Time: 0s = 0.07cs + 0vs)
BSIM4/test8.X.....................................passed (Time: 0s = 0.06cs + 0vs)
BSIM4/test9.X.....................................passed (Time: 0s = 0.05cs + 0vs)
BSIM4_GM/nmosGm1..................................passed (Time: 1s = 0.06cs + 1vs)
BSIM4_GM/nmosGm1_rev..............................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_GM/pmosGm1..................................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_GM/pmosGm1_rev..............................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test1.X...........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test10.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test11.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test12.X..........................passed (Time: 1s = 0.08cs + 1vs)
BSIM4_rbodymod1/test13.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test14.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test2.X...........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test3.X...........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod1/test4.X...........................passed (Time: 0s = 0.04cs + 0vs)
BSIM4_rbodymod1/test5.X...........................passed (Time: 0s = 0.09cs + 0vs)
BSIM4_rbodymod1/test6.X...........................passed (Time: 1s = 0.04cs + 0vs)
BSIM4_rbodymod1/test7.X...........................passed (Time: 0s = 0.09cs + 0vs)
BSIM4_rbodymod1/test8.X...........................passed (Time: 0s = 0.06cs + 0vs)
BSIM4_rbodymod1/test9.X...........................passed (Time: 0s = 0.05cs + 0vs)
BSIM4_rbodymod2/test1.X...........................passed (Time: 0s = 0.08cs + 0vs)
BSIM4_rbodymod2/test10.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod2/test11.X..........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod2/test12.X..........................passed (Time: 1s = 0.08cs + 0vs)
BSIM4_rbodymod2/test13.X..........................passed (Time: 0s = 0.08cs + 0vs)
BSIM4_rbodymod2/test14.X..........................passed (Time: 0s = 0.09cs + 0vs)
BSIM4_rbodymod2/test2.X...........................passed (Time: 0s = 0.08cs + 0vs)
BSIM4_rbodymod2/test3.X...........................passed (Time: 0s = 0.08cs + 0vs)
BSIM4_rbodymod2/test4.X...........................passed (Time: 0s = 0.04cs + 0vs)
BSIM4_rbodymod2/test5.X...........................passed (Time: 1s = 0.08cs + 1vs)
BSIM4_rbodymod2/test6.X...........................passed (Time: 0s = 0.05cs + 0vs)
BSIM4_rbodymod2/test7.X...........................passed (Time: 0s = 0.07cs + 0vs)
BSIM4_rbodymod2/test8.X...........................passed (Time: 0s = 0.08cs + 0vs)
BSIM4_rbodymod2/test9.X...........................passed (Time: 0s = 0.06cs + 0vs)
BSIM6/gummel_nmos_xyce............................passed (Time: 1s = 0.48cs + 0vs)
BSIM6/gummel_pmos_xyce............................passed (Time: 0s = 0.25cs + 0vs)
BSIM6/idvd_nmos_xyce..............................passed (Time: 0s = 0.18cs + 0vs)
BSIM6/idvd_pmos_xyce..............................passed (Time: 1s = 0.19cs + 1vs)
BSIM6/idvg_nmos_xyce..............................passed (Time: 0s = 0.43cs + 0vs)
BSIM6/idvg_pmos_xyce..............................passed (Time: 1s = 0.42cs + 1vs)
BSIM6/inverter_transient_xyce.....................passed (Time: 2s = 2.75cs + 0vs)
BSIMCMG/ac........................................passed[sh] (Time: 1s = 0.06cs + 0vs)
BSIMCMG/gummel_n..................................passed (Time: 0s = 0.46cs + 0vs)
BSIMCMG/gummel_p..................................passed (Time: 1s = 0.45cs + 0vs)
BSIMCMG/inverter_transient........................passed (Time: 5s = 4.93cs + 0vs)
BSIMCMG_110/ac....................................passed[sh] (Time: 0s = 0.06cs + 0vs)
BSIMCMG_110/gummel_n..............................passed (Time: 0s = 0.22cs + 0vs)
BSIMCMG_110/gummel_p..............................passed (Time: 0s = 0.22cs + 0vs)
BSIMCMG_110/inverter_transient....................passed (Time: 2s = 1.42cs + 0vs)
BSIMSOI3/b3soiTranDefaults........................passed (Time: 0s = 0.03cs + 0vs)
BSIMSOI3/dcSweep..................................passed (Time: 0s = 0.07cs + 0vs)
BSRC/Bsrc_A1......................................passed (Time: 0s = 0.03cs + 0vs)
BSRC/Bsrc_A2......................................passed (Time: 0s = 0.03cs + 0vs)
BSRC/Bsrc_B1......................................passed[sh] (Time: 0s = 0.09cs + 0vs)
BSRC/Bsrc_C1......................................passed (Time: 1s = 0.16cs + 0vs)
BSRC/Bsrc_D1......................................passed (Time: 0s = 0.03cs + 0vs)
BUG_139/in_line_comment...........................passed (Time: 0s = 0.02cs + 0vs)
BUG_174/nlrcs10...................................passed (Time: 0s = 0.07cs + 0vs)
BUG_237/Bug_237_A1................................passed (Time: 0s = 0.15cs + 0vs)
BUG_237/Bug_237_A2................................passed (Time: 1s = 0.15cs + 0vs)
BUG_374/bug_374...................................passed[sh] (Time: 0s = 0.09cs + 0vs)
BUG_458/bug458....................................passed (Time: 0s = 0.03cs + 0vs)
CAPACITOR/ErrorMessageTest........................passed[sh] (Time: 0s = 0.06cs + 0vs)
CAPACITOR/capacitor...............................passed[sh] (Time: 0s = 0.13cs + 0vs)
CAPACITOR/capacitor3..............................passed[sh] (Time: 0s = 0.11cs + 0vs)
CAPACITOR/rc_osc..................................passed[sh] (Time: 1s = 0.31cs + 0vs)
CCCS/ftest........................................passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1007_SON/ic_cap_step......passed[sh] (Time: 0s = 0.32cs + 0vs)
Certification_Tests/BUG_1007_SON/vbicNandStep.....passed[sh] (Time: 1s = 0.77cs + 0vs)
Certification_Tests/BUG_1011/sand23...............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1012/negtable.............passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1017/bug_1017.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1020_SON/subcparam........passed (Time: 0s = 0.03cs + 0vs)
C_T/BUG_1035_SON/RC_AC_data_expr..................passed[sh] (Time: 1s = 0.06cs + 0vs)
C_T/BUG_1035_SON/RC_AC_data_expr4.................passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_1035_SON/RC_AC_data_exprAlone.............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_1035_SON/RC_simple........passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_1035_SON/RC_simple_data...passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_1035_SON/transLineDataGlobal_AC...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1038_SON/top..............passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_1040_SON/bug_1040_son.....passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_1043_SON/RC_AC_params.....passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_1043_SON/RC_AC_params_analytic............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_1116/bug_1116.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1132/bug_1132-empty.......passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1148/bug_1148.............passed[sh] (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_1152/bug_1152.............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1152/bug_767b.............passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_1178/bug_1178.............passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_120/bug_120...............passed[sh] (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_128/bug_128...............passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_1284/bug_1284.............passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_1296/1296.................passed[sh] (Time: 1s = 0.33cs + 0vs)
Certification_Tests/BUG_1302/bug_1302.............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_133/bug_133...............passed[sh] (Time: 4s = 4.60cs + 0vs)
Certification_Tests/BUG_1358/bug_1358_quotes......passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1370/bug1370..............passed (Time: 1s = 0.05cs + 1vs)
Certification_Tests/BUG_1376/bug_1376.............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_1377/test1.X..............passed (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_138/bug_138_1.............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_138/bug_138_2.............passed (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1398/RLC..................passed[sh] (Time: 0s = 0.16cs + 0vs)
Certification_Tests/BUG_1416/bug_1416_dc..........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1416/bug_1416_tran........passed[sh] (Time: 1s = 0.65cs + 0vs)
Certification_Tests/BUG_1430/bug_1430.............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1455/bug_1455.............passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1456/bug_1456.............passed (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1460/bug_1460.............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_1558/bug_1558.............passed[sh] (Time: 1s = 0.29cs + 0vs)
Certification_Tests/BUG_1558/bug_1558_error.......passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_156_SON/tab_only_line.....passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1578/bug_1578.............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_159/bug_159...............passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_1595/bug1595..............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1602/vbic_3T_et_cf........passed (Time: 0s = 0.04cs + 0vs)
C_T/BUG_1602/vbic_3T_et_cf_TNOM27.................passed (Time: 0s = 0.05cs + 0vs)
C_T/BUG_1602/vbic_3T_et_cf_TRANS..................passed (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1636/foo..................passed[sh] (Time: 1s = 0.09cs + 0vs)
Certification_Tests/BUG_164_SON/ageTempDep........passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_164_SON/voltDepCap........passed[sh] (Time: 2s = 2.37cs + 0vs)
Certification_Tests/BUG_1657/bug_1657.............passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_1661/globalnode_expr_toplev...............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1686/bug_1686.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1692/bug_1692.............passed[sh] (Time: 1s = 0.63cs + 0vs)
Certification_Tests/BUG_1770/HBT_IV_nosweep.......passed (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_1774/HBT_IV_step..........passed[sh] (Time: 1s = 1.32cs + 0vs)
Certification_Tests/BUG_1775/HBT_IV...............passed (Time: 2s = 1.18cs + 0vs)
C_T/BUG_1776/HBT_IV_10X50_20100217................passed[sh] (Time: 0s = 0.14cs + 0vs)
Certification_Tests/BUG_1788/inv_tr...............passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1797/one-shot.............passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_1801/bug_1801_A...........passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_1801/bug_1801_B...........passed[sh] (Time: 1s = 0.18cs + 0vs)
Certification_Tests/BUG_1803/bug_1803a............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_1803/bug_1803b............passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1803/bug_1803c............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_1803/bug_1803d............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1806/bug_1806.............passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_1807/vbic_pnp_default.....passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_1822/FBH_HBT..............passed (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_1822/FBH_HBT_trans........passed (Time: 1s = 0.13cs + 0vs)
Certification_Tests/BUG_1826/linear_simple........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1847/bug1847..............passed[sh] (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_1866/bug_1866.............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1890/bug1890..............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_1902/largeRCladder........passed[sh] (Time: 6s = 6.33cs + 0vs)
C_T/BUG_1902/largeRCladder_belos..................passed[sh] (Time: 7s = 6.23cs + 0vs)
Certification_Tests/BUG_1922/bug1922..............passed (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_1946/bug_1946.............passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1946/bug_1946_nl..........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_1957/mutindlin_even.......passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_1957/mutindlin_odd........passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_1962/four.................passed[sh] (Time: 1s = 0.08cs + 0vs)
Certification_Tests/BUG_1962/ic...................passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_1962/measure..............passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_1962/nodeset..............passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1962/print................passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_1962/result...............passed[sh] (Time: 0s = 0.10cs + 0vs)
Certification_Tests/BUG_1962/sens.................passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_198/bug_198...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_2007/gstep................passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_201_SON/bug201a...........passed (Time: 1s = 0.02cs + 0vs)
Certification_Tests/BUG_201_SON/bug201b...........passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_204/bug204................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_206/bug_206...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_21_SON/func_error.........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_21_SON/func_loop..........passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_21_SON/func_param.........passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_225/bug_225...............passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_229_SON/bug229son.........passed (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_22_SON/bug22..............passed[sh] (Time: 1s = 0.03cs + 0vs)
Certification_Tests/BUG_246/bug_246...............passed (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_250/bug_250...............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_254/atanh_tanh............passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_256/bug_256...............passed[sh] (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_258/bug_198...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_25_SON/testCombined1......passed[sh] (Time: 1s = 0.75cs + 0vs)
Certification_Tests/BUG_260_SON/bug_260_son.......passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_263/bug_263...............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_264_SON/bug_264...........passed (Time: 0s = 0.01cs + 0vs)
Certification_Tests/BUG_267/bug267................passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_269_SON/bug269............passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_271_SON/bug_271...........passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_272_SON/bug272............passed[sh] (Time: 1s = 0.18cs + 0vs)
Certification_Tests/BUG_276_SON/bug_276...........passed[sh] (Time: 2s = 1.92cs + 0vs)
Certification_Tests/BUG_277_SON/ring51_trans......passed (Time: 5s = 5.13cs + 0vs)
Certification_Tests/BUG_281/bug_281...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_289/bug_289...............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_28_SON/bug_28_son1........passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_28_SON/bug_28_son2........passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_28_SON/bug_28_son3........passed[sh] (Time: 0s = 0.28cs + 0vs)
Certification_Tests/BUG_28_SON/bug_28_son4........passed[sh] (Time: 0s = 0.66cs + 0vs)
Certification_Tests/BUG_28_SON/bug_28_son5........passed[sh] (Time: 1s = 0.44cs + 0vs)
Certification_Tests/BUG_297_SON/bug_297...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_302/bug_302...............passed[sh] (Time: 0s = 0.35cs + 0vs)
Certification_Tests/BUG_306_SON/lead_bjt_gear.....passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_306_SON/lead_bjt_trap.....passed[sh] (Time: 0s = 0.15cs + 0vs)
Certification_Tests/BUG_307/bug_307_a.............passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_307/bug_307_d.............passed[sh] (Time: 2s = 1.36cs + 0vs)
Certification_Tests/BUG_308_SON/comparator3.......passed[sh] (Time: 0s = 0.29cs + 0vs)
Certification_Tests/BUG_311/bug_311_a.............passed[sh] (Time: 1s = 0.30cs + 0vs)
Certification_Tests/BUG_318/bug_318...............passed[sh] (Time: 0s = 0.36cs + 0vs)
Certification_Tests/BUG_320/bug_320...............passed[sh] (Time: 0s = 0.16cs + 0vs)
Certification_Tests/BUG_325_SON/vbic_3T_et_cf.....passed[sh] (Time: 0s = 0.17cs + 0vs)
Certification_Tests/BUG_332/bug_332...............passed (Time: 1s = 0.07cs + 0vs)
Certification_Tests/BUG_333_SON/bug_333_son.......passed[sh] (Time: 0s = 0.34cs + 0vs)
Certification_Tests/BUG_338_SON/bug_338...........passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_340/stepRC-hb.............passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_343/bug_343...............passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_352/BUG_352a..............passed[sh] (Time: 1s = 0.10cs + 0vs)
Certification_Tests/BUG_354_SON/bad_function......passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_354_SON/bad_leadcurrent...passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_354_SON/bad_parameter.....passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_359_SON/bug_359...........passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_360_SON/nand8.............passed[sh] (Time: 0s = 0.14cs + 0vs)
Certification_Tests/BUG_372/invert1...............passed[sh] (Time: 1s = 1.13cs + 0vs)
Certification_Tests/BUG_372/invert2...............passed[sh] (Time: 1s = 1.13cs + 0vs)
Certification_Tests/BUG_372/invert3...............passed[sh] (Time: 2s = 1.66cs + 0vs)
Certification_Tests/BUG_372/invert6...............passed[sh] (Time: 3s = 2.44cs + 0vs)
Certification_Tests/BUG_372/invert_b3soi..........passed[sh] (Time: 0s = 0.47cs + 0vs)
Certification_Tests/BUG_372/invert_bsim3..........passed[sh] (Time: 1s = 0.62cs + 0vs)
Certification_Tests/BUG_372/invert_bsim4..........passed[sh] (Time: 1s = 0.64cs + 0vs)
Certification_Tests/BUG_379_SON/bug379............passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_37_SON/bug_37_son.........passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_381/bug_381...............passed[sh] (Time: 2s = 1.61cs + 0vs)
C_T/BUG_384_SON/invalid_enhancement_specie........passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_384_SON/invalid_enhancement_type..........passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_384_SON/invalid_ic........passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_384_SON/invalid_rate......passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_384_SON/invalid_source_specie.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_384_SON/invalid_specie....passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_386/diode.................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_387/lpnp..................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_387/pnp...................passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_387_SON/bug_387...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_389_SON/bug389............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_38_SON/bug_38_son.........passed[sh] (Time: 0s = 0.20cs + 0vs)
Certification_Tests/BUG_397/diode.................passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_39_SON/agauss.............passed[sh] (Time: 1s = 0.55cs + 0vs)
Certification_Tests/BUG_39_SON/bug39_int..........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_39_SON/bug39_limit........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_39_SON/bug39_pow..........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_39_SON/bug39_sign.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_39_SON/gauss..............passed[sh] (Time: 1s = 0.57cs + 0vs)
Certification_Tests/BUG_40/bug_40.................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_401/bad-device-line.......passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_401/extra-space...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_401/worse-device-line.....passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_401_SON/bug_401...........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_402_SON/bug402son.........passed[sh] (Time: 0s = 0.14cs + 0vs)
Certification_Tests/BUG_407_SON/bug_407_ac........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_407_SON/bug_407_dc........passed[sh] (Time: 1s = 0.11cs + 0vs)
Certification_Tests/BUG_407_SON/bug_407_hb........passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_408/test..................passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_40_SON/bug40..............passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_411/perl-generated........passed[sh] (Time: 1s = 0.60cs + 0vs)
Certification_Tests/BUG_412_SON/bug412............passed[sh] (Time: 0s = 0.17cs + 0vs)
Certification_Tests/BUG_427_SON/bug_427...........passed (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_428/bug428................passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_438/bug438................passed (Time: 1s = 0.37cs + 0vs)
Certification_Tests/BUG_439/formerly-bad-vsrc.....passed (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_440_SON/bug440............passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_440_SON/bug440a...........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_440_SON/bug440b...........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_442/bug_442...............passed[sh] (Time: 1s = 0.26cs + 0vs)
Certification_Tests/BUG_456/bug456................passed[sh] (Time: 3s = 3.52cs + 0vs)
Certification_Tests/BUG_456/bug456_unpacked.......passed[sh] (Time: 4s = 3.49cs + 0vs)
Certification_Tests/BUG_456/bug456emit............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_456/bug456emit_gear.......passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_456/bug456output..........passed[sh] (Time: 4s = 3.82cs + 0vs)
Certification_Tests/BUG_456/bug456pp..............passed[sh] (Time: 2s = 2.38cs + 0vs)
Certification_Tests/BUG_456/bug456pp_unpacked.....passed[sh] (Time: 3s = 2.46cs + 0vs)
Certification_Tests/BUG_456/simple................passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_457_SON/bug457............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_45_SON/diode..............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_460/bug_460...............passed[sh] (Time: 0s = 0.33cs + 0vs)
Certification_Tests/BUG_461_SON/bug461............passed[sh] (Time: 1s = 0.26cs + 0vs)
Certification_Tests/BUG_461_SON/bug461tran........passed[sh] (Time: 0s = 0.51cs + 0vs)
Certification_Tests/BUG_465_SON/bug465............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_466_SON/bug_466...........passed (Time: 1s = 0.16cs + 0vs)
Certification_Tests/BUG_467_SON/rc_simple_xyce....passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_46_SON/bug_46_son.........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_477_SON/bug_477...........passed (Time: 0s = 0.35cs + 0vs)
Certification_Tests/BUG_479_SON/bug_479...........passed[sh] (Time: 1s = 0.14cs + 0vs)
Certification_Tests/BUG_487_SON/bug_487...........passed[sh] (Time: 8s = 8.13cs + 0vs)
Certification_Tests/BUG_48_SON/test...............passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_496_SON/bug_496_son.......passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_518_SON/bug518............passed (Time: 0s = 0.17cs + 0vs)
Certification_Tests/BUG_519_SON/bug_519_SON.......passed[sh] (Time: 1s = 1.18cs + 0vs)
Certification_Tests/BUG_520/bug520................passed[sh] (Time: 0s = 0.30cs + 0vs)
Certification_Tests/BUG_524_SON/cmod_capmod.......passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_524_SON/lmod_indmod.......passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_524_SON/rmod_resmod.......passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_525_SON/bug_525...........passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_529_SON/bug529............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_1.....passed[sh] (Time: 1s = 0.07cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_2.....passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_3.....passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_4.....passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_5.....passed[sh] (Time: 0s = 0.26cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_6.....passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_7.....passed[sh] (Time: 1s = 0.25cs + 0vs)
Certification_Tests/BUG_538_SON/bug_538_son_8.....passed[sh] (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_544_SON/bug_544...........passed (Time: 6s = 5.84cs + 0vs)
Certification_Tests/BUG_546_SON/tempcap...........passed (Time: 0s = 0.06cs + 0vs)
C_T/BUG_546_SON/tempcap_instance..................passed (Time: 0s = 0.05cs + 0vs)
C_T/BUG_546_SON/tempcap_instance2.................passed (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_547_SON/mb_orig...........passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_548/overlap...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_54_SON/ring51.............passed[sh] (Time: 2s = 1.20cs + 0vs)
Certification_Tests/BUG_568/bug_568...............passed (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_573/userOneD..............passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_573_SON/common_emitter....passed[sh] (Time: 6s = 6.41cs + 0vs)
Certification_Tests/BUG_575_SON/bug575son.........passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_577_SON/bug577son.........passed (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_584_SON/bug_584...........passed (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_587/587...................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_604_SON/bug_604...........passed[sh] (Time: 0s = 0.10cs + 0vs)
Certification_Tests/BUG_606_SON/bug606son.........passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_606_SON/global_params.....passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_606_SON/resistor..........passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_61/capacitor..............passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_612/rs_example............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_612_SON/bug_612...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_616/bug_616...............passed[sh] (Time: 0s = 0.29cs + 0vs)
Certification_Tests/BUG_624/bug_624...............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_624_SON/bug_624a..........passed[sh] (Time: 0s = 0.19cs + 0vs)
Certification_Tests/BUG_629_SON/bug_629...........passed (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_630_SON/vpwl..............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_636_SON/bug636............passed[sh] (Time: 1s = 0.05cs + 0vs)
C_T/BUG_641_SON/bad_obj_function_dot_sens.........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_644_SON/bad_dot_dc_line...passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_645_SON/bug645son_Func....passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_645_SON/bug645son_Global..................passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_645_SON/bug645son_Param...passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_646_SON/bug_646...........passed[sh] (Time: 0s = 0.24cs + 0vs)
Certification_Tests/BUG_646_SON/bug_646_ac........passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_646_SON/bug_646_homotopy..................passed[sh] (Time: 1s = 0.78cs + 0vs)
Certification_Tests/BUG_647_SON/Synapse_lv3.......passed[sh] (Time: 9s = 9.16cs + 0vs)
Certification_Tests/BUG_647_SON/b3soi.............passed[sh] (Time: 4s = 3.80cs + 0vs)
Certification_Tests/BUG_647_SON/bjt...............passed[sh] (Time: 0s = 0.16cs + 0vs)
Certification_Tests/BUG_647_SON/bsim3.............passed[sh] (Time: 3s = 2.15cs + 0vs)
Certification_Tests/BUG_647_SON/bsim4.............passed[sh] (Time: 1s = 1.58cs + 0vs)
Certification_Tests/BUG_647_SON/lumpedLine........passed[sh] (Time: 2s = 1.27cs + 0vs)
Certification_Tests/BUG_647_SON/mesfet............passed (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_647_SON/mos1..............passed[sh] (Time: 2s = 2.07cs + 0vs)
Certification_Tests/BUG_647_SON/mos2..............passed[sh] (Time: 2s = 2.04cs + 0vs)
Certification_Tests/BUG_647_SON/mos3..............passed[sh] (Time: 2s = 2.02cs + 0vs)
Certification_Tests/BUG_647_SON/neuron_lv3........passed[sh] (Time: 2s = 1.57cs + 0vs)
Certification_Tests/BUG_647_SON/neuron_lv4........passed[sh] (Time: 3s = 3.16cs + 0vs)
Certification_Tests/BUG_647_SON/neuron_lv6........passed[sh] (Time: 0s = 0.36cs + 0vs)
Certification_Tests/BUG_647_SON/neuron_lv7........passed[sh] (Time: 1s = 0.38cs + 0vs)
Certification_Tests/BUG_647_SON/neuron_lv8........passed[sh] (Time: 0s = 0.38cs + 0vs)
Certification_Tests/BUG_647_SON/semic_resistor....passed[sh] (Time: 1s = 0.32cs + 0vs)
Certification_Tests/BUG_647_SON/semicap...........passed[sh] (Time: 3s = 3.38cs + 0vs)
Certification_Tests/BUG_647_SON/tempind...........passed[sh] (Time: 0s = 0.37cs + 0vs)
Certification_Tests/BUG_647_SON/vdmos.............passed[sh] (Time: 0s = 0.28cs + 0vs)
Certification_Tests/BUG_652_SON/bug_652a..........passed[sh] (Time: 0s = 0.29cs + 0vs)
Certification_Tests/BUG_654/macterminator.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_654_SON/bug_654...........passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_655_SON/contLine..........passed[sh] (Time: 0s = 0.09cs + 0vs)
Certification_Tests/BUG_657_SON/Bad_PWL_Source....passed[sh] (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_658/diode.................passed[sh] (Time: 0s = 0.04cs + 0vs)
C_T/BUG_662/headerLineLengthMoreThan256...........passed[sh] (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_664_SON/bug664son.........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_667_SON/ic_in_subckt......passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_667_SON/ic_in_subckt_warning..............passed[sh] (Time: 0s = 0.08cs + 0vs)
C_T/BUG_667_SON/nodeset_in_subckt.................passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_668/bug_668...............passed[sh] (Time: 1s = 4.58cs + 0vs)
Certification_Tests/BUG_67/bug_67.................passed[sh] (Time: 1s = 0.07cs + 0vs)
Certification_Tests/BUG_671/vpwl_binaryfile.......passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_681_SON/bsim3_681.........passed[sh] (Time: 0s = 0.44cs + 0vs)
Certification_Tests/BUG_681_SON/bsim4_681.........passed[sh] (Time: 1s = 0.37cs + 0vs)
Certification_Tests/BUG_689/dos-diode.............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_690/misspelled............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_692/bug_692...............passed[sh] (Time: 0s = 0.13cs + 0vs)
Certification_Tests/BUG_695/bug695................passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_700_SON/bug700son.........passed[sh] (Time: 2s = 1.56cs + 0vs)
Certification_Tests/BUG_701/dup-subcircuit........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_701/dup-toplevel..........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_701_SON/ac_files..........passed[sh] (Time: 0s = 0.17cs + 0vs)
Certification_Tests/BUG_701_SON/ac_files_csv......passed[sh] (Time: 0s = 0.14cs + 0vs)
Certification_Tests/BUG_701_SON/hb_files_csv......passed[sh] (Time: 1s = 0.37cs + 0vs)
Certification_Tests/BUG_702/dup-external..........passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_702/dup-inlined...........passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_702/empty-initcond........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_702/external..............passed[sh] (Time: 0s = 0.28cs + 0vs)
Certification_Tests/BUG_702/inlined-multiple......passed[sh] (Time: 0s = 0.21cs + 0vs)
Certification_Tests/BUG_702/inlined-single........passed[sh] (Time: 1s = 0.26cs + 0vs)
Certification_Tests/BUG_702/missing-initcond......passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_702/precedence............passed[sh] (Time: 0s = 0.27cs + 0vs)
Certification_Tests/BUG_704_SON/bug_704...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_706_SON/rc_simple_lib.....passed[sh] (Time: 1s = 1.10cs + 0vs)
Certification_Tests/BUG_710_SON/b3cap.............passed (Time: 1s = 0.10cs + 0vs)
Certification_Tests/BUG_710_SON/b4cap.............passed (Time: 0s = 0.11cs + 0vs)
Certification_Tests/BUG_715_SON/bug715............passed[sh] (Time: 0s = 0.16cs + 0vs)
Certification_Tests/BUG_718_SON/invalidNodes......passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_718_SON/voltageDiff.......passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_726/adjacent..............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_730/bug_730...............passed[sh] (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_742/bug_742...............passed[sh] (Time: 1s = 0.08cs + 0vs)
Certification_Tests/BUG_744/bad_dc_op.............passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_746_SON/raw_file_b_e_h_sources............passed[sh] (Time: 0s = 0.10cs + 0vs)
C_T/BUG_746_SON/raw_file_f_sources................passed[sh] (Time: 0s = 0.10cs + 0vs)
C_T/BUG_746_SON/raw_file_g_sources................passed[sh] (Time: 0s = 0.10cs + 0vs)
C_T/BUG_746_SON/raw_file_lumped_line..............passed[sh] (Time: 0s = 0.09cs + 0vs)
C_T/BUG_746_SON/raw_file_mutual_inductors.........passed[sh] (Time: 1s = 0.44cs + 0vs)
C_T/BUG_746_SON/raw_file_r_l_c_devices............passed[sh] (Time: 0s = 0.10cs + 0vs)
C_T/BUG_754_SON/dcsweep_globalpar.................passed[sh] (Time: 0s = 0.19cs + 0vs)
C_T/BUG_754_SON/source_stepped_and_swept..........passed[sh] (Time: 0s = 0.14cs + 0vs)
C_T/BUG_754_SON/sourcestep_globalparam............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_75_SON/bug75..............passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_764/bug_764...............passed[sh] (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_769/bug_769a..............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_769/bug_769b..............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_769/bug_769c..............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_775_SON/bug775son.........passed[sh] (Time: 3s = 3.01cs + 0vs)
C_T/BUG_785_SON/lib_file_is_a_dir.................passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/lib_file_is_missing...............passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/logfile_is_a_dir..................passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_785_SON/logfile_to_nonexist_dir...........passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_785_SON/namesfile_is_a_dir................passed[sh] (Time: 1s = 0.06cs + 0vs)
C_T/BUG_785_SON/namesfile_to_nonexist_directory...passed[sh] (Time: 0s = 0.05cs + 0vs)
C_T/BUG_785_SON/outfile_is_a_dir..................passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/outfile_to_nonexist_directory.....passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/param_file_is_a_dir...............passed[sh] (Time: 0s = 0.07cs + 0vs)
C_T/BUG_785_SON/param_file_is_missing.............passed[sh] (Time: 0s = 0.07cs + 0vs)
C_T/BUG_785_SON/print_file_is_a_dir...............passed[sh] (Time: 0s = 0.08cs + 0vs)
C_T/BUG_785_SON/print_to_nonexist_directory.......passed[sh] (Time: 0s = 0.08cs + 0vs)
C_T/BUG_785_SON/response_file_is_a_dir............passed[sh] (Time: 1s = 0.06cs + 0vs)
C_T/BUG_785_SON/response_file_to_nonexist_dir.....passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/restart_file_is_a_dir.............passed[sh] (Time: 0s = 0.07cs + 0vs)
C_T/BUG_785_SON/restart_file_is_missing...........passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/save_file_is_a_dir................passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_785_SON/save_to_nonexist_directory........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_790/bug790................passed[sh] (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_791_SON/bug791............passed[sh] (Time: 1s = 0.19cs + 0vs)
Certification_Tests/BUG_792/bug_792...............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_795/print.................passed[sh] (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_80/capacitor..............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_801/leadExp...............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_803/YDup..................passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_805/bug_805...............passed[sh] (Time: 0s = 0.30cs + 0vs)
Certification_Tests/BUG_805_SON/bug805_all........passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_806_SON/dc_data...........passed[sh] (Time: 1s = 0.04cs + 0vs)
C_T/BUG_806_SON/dc_globalparam_data...............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_806_SON/mos2_data_step....passed[sh] (Time: 0s = 0.62cs + 0vs)
C_T/BUG_806_SON/mos2_data_step_globalparam........passed[sh] (Time: 1s = 0.63cs + 0vs)
C_T/BUG_806_SON/transLineDataGlobal...............passed[sh] (Time: 0s = 0.22cs + 0vs)
Certification_Tests/BUG_80_SON/Bad_PWL_Source.....passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_813_SON/bug_813_son.......passed[sh] (Time: 0s = 0.12cs + 0vs)
Certification_Tests/BUG_822/ring51................passed[sh] (Time: 1s = 0.79cs + 0vs)
Certification_Tests/BUG_828_SON/bug_828...........passed[sh] (Time: 0s = 0.08cs + 0vs)
Certification_Tests/BUG_834/inv...................passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_836_SON/sRC...............passed[sh] (Time: 1s = 0.23cs + 0vs)
Certification_Tests/BUG_846/ring51_loca...........passed[sh] (Time: 1s = 1.09cs + 0vs)
Certification_Tests/BUG_848/topoCheck.............passed[sh] (Time: 4s = 3.73cs + 0vs)
Certification_Tests/BUG_849_SON/ADC_step..........passed (Time: 0s = 0.05cs + 0vs)
C_T/BUG_850_SON/bad_user_defined_func.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_85_SON/bug85son...........passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_864_SON/bug_864_son.......passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_86_SON/bug86..............passed (Time: 0s = 0.02cs + 0vs)
Certification_Tests/BUG_870_SON/gummel_p..........passed[sh] (Time: 1s = 0.46cs + 0vs)
Certification_Tests/BUG_877_SON/agauss............passed[sh] (Time: 1s = 1.05cs + 0vs)
Certification_Tests/BUG_903_SON/bug_903...........passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_903_SON/bug_903_ac........passed[sh] (Time: 0s = 0.07cs + 0vs)
C_T/BUG_903_SON/bug_903_homotopy..................passed[sh] (Time: 0s = 0.04cs + 0vs)
Certification_Tests/BUG_907_SON/rlc...............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_907_SON/test2.............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_913_SON/bug913son.........passed (Time: 0s = 0.03cs + 0vs)
Certification_Tests/BUG_920_SON/bug920............passed[sh] (Time: 1s = 0.28cs + 0vs)
Certification_Tests/BUG_927_SON/bug927-op-raw.....passed[sh] (Time: 0s = 1.26cs + 0vs)
Certification_Tests/BUG_927_SON/bug927-prn........passed[sh] (Time: 0s = 0.06cs + 0vs)
C_T/BUG_963_SON/nonzeroInitialValue...............passed (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_963_SON/sdtWithFunc.......passed (Time: 0s = 0.03cs + 0vs)
C_T/BUG_966_SON/tran-homotopy-error...............passed[sh] (Time: 0s = 0.06cs + 0vs)
Certification_Tests/BUG_966_SON/tran-homotopy.....passed[sh] (Time: 0s = 0.18cs + 0vs)
Certification_Tests/BUG_966_SON/tran-sens-error...passed[sh] (Time: 1s = 0.06cs + 0vs)
Certification_Tests/BUG_966_SON/tran-sens.........passed[sh] (Time: 0s = 0.16cs + 0vs)
Certification_Tests/BUG_966_SON/tran..............passed[sh] (Time: 0s = 0.07cs + 0vs)
Certification_Tests/BUG_981_SON/bug981............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_986_SON/bug986............passed[sh] (Time: 0s = 0.05cs + 0vs)
Certification_Tests/BUG_991_SON/BH_test...........passed (Time: 0s = 0.05cs + 0vs)
C_T/MOS1_Invert_Cascade/inverter_cascade_15.......passed (Time: 2s = 1.04cs + 1vs)
CircuitSim90/MOS2/ab_integ........................passed (Time: 0s = 0.05cs + 0vs)
CircuitSim90/MOS2/e1480...........................passed (Time: 0s = 0.07cs + 0vs)
CircuitSim90/MOS2/g1310...........................passed (Time: 0s = 0.07cs + 0vs)
CircuitSim90/MOS2/gm6.............................passed (Time: 0s = 0.04cs + 0vs)
CircuitSim90/MOS2/hussamp.........................passed (Time: 0s = 0.16cs + 0vs)
CircuitSim90/MOS2/mosrect.........................passed (Time: 1s = 0.03cs + 1vs)
CircuitSim90/MOS2/nand............................passed (Time: 0s = 0.45cs + 0vs)
CircuitSim90/MOS2/ring............................passed (Time: 1s = 1.02cs + 0vs)
CircuitSim90/MOS2/slowlatch.......................passed (Time: 0s = 0.09cs + 0vs)
CircuitSim90/MOS2/toronto.........................passed (Time: 1s = 0.11cs + 0vs)
CircuitSim90/MOS3/gm1.............................passed (Time: 0s = 0.18cs + 0vs)
CircuitSim90/MOS3/gm17............................passed (Time: 0s = 0.05cs + 0vs)
CircuitSim90/MOS3/gm2.............................passed (Time: 0s = 0.07cs + 0vs)
CircuitSim90/MOS3/gm3.............................passed (Time: 0s = 0.07cs + 0vs)
CircuitSim90/MOS3/mike2...........................passed (Time: 1s = 0.05cs + 1vs)
CircuitSim90/MOS3/todd3...........................passed (Time: 0s = 0.05cs + 0vs)
CommandLine/command_line..........................passed[sh] (Time: 0s = 0.20cs + 0vs)
COMPARATOR/comparator.............................passed (Time: 0s = 0.14cs + 0vs)
CONNECTIVITY/connect..............................passed[sh] (Time: 0s = 0.19cs + 0vs)
DC_UPGRADE/dcDec..................................passed (Time: 0s = 0.03cs + 0vs)
DC_UPGRADE/dcList.................................passed (Time: 1s = 0.02cs + 1vs)
DC_UPGRADE/dcOct..................................passed (Time: 0s = 0.03cs + 0vs)
DEV_DOC/dev_doc...................................passed[sh] (Time: 0s = 0.11cs + 0vs)
DEV_DOC/dev_doc_q1................................passed[sh] (Time: 0s = 0.02cs + 0vs)
DEV_DOC_CAT/dev_doc...............................passed[sh] (Time: 0s = 0.15cs + 0vs)
DIGITAL/ErrorMessageTest..........................passed[sh] (Time: 0s = 0.06cs + 0vs)
DIGITAL/IC_test...................................passed (Time: 0s = 0.07cs + 0vs)
DIGITAL/add_unit_test.............................passed (Time: 1s = 0.06cs + 1vs)
DIGITAL/and4_unit_test............................passed (Time: 0s = 0.04cs + 0vs)
DIGITAL/buf_unit_test.............................passed (Time: 0s = 0.03cs + 0vs)
DIGITAL/dig_count.................................passed (Time: 0s = 0.17cs + 0vs)
DIGITAL/digintstate_default_jkff_tff_test.........passed[sh] (Time: 0s = 0.06cs + 0vs)
DIGITAL/digintstate_default_test..................passed[sh] (Time: 0s = 0.05cs + 0vs)
DIGITAL/digintstate_invalid_test..................passed[sh] (Time: 0s = 0.08cs + 0vs)
DIGITAL/digintstate_one_jkff_tff_test.............passed[sh] (Time: 1s = 0.04cs + 0vs)
DIGITAL/digintstate_one_test......................passed[sh] (Time: 0s = 0.06cs + 0vs)
DIGITAL/digintstate_three_jkff_tff_test...........passed[sh] (Time: 0s = 0.05cs + 0vs)
DIGITAL/digintstate_three_test....................passed[sh] (Time: 0s = 0.05cs + 0vs)
DIGITAL/digintstate_two_jkff_tff_test.............passed[sh] (Time: 0s = 0.05cs + 0vs)
DIGITAL/digintstate_two_test......................passed[sh] (Time: 0s = 0.05cs + 0vs)
DIGITAL/digintstate_zero_jkff_tff_test............passed[sh] (Time: 0s = 0.06cs + 0vs)
DIGITAL/digintstate_zero_test.....................passed[sh] (Time: 0s = 0.06cs + 0vs)
DIGITAL/dltch_dc_test.............................passed[sh] (Time: 0s = 0.10cs + 0vs)
DIGITAL/dltch_enable_test.........................passed (Time: 1s = 0.05cs + 0vs)
DIGITAL/dltch_preset_clear_test...................passed (Time: 0s = 0.10cs + 0vs)
DIGITAL/inv_unit_test.............................passed (Time: 0s = 0.03cs + 0vs)
DIGITAL/jkff_preset_clear_test....................passed (Time: 0s = 0.09cs + 0vs)
DIGITAL/jkff_unit_test............................passed (Time: 0s = 0.05cs + 0vs)
DIGITAL/nand4_unit_test...........................passed (Time: 1s = 0.04cs + 0vs)
DIGITAL/nor4_unit_test............................passed (Time: 0s = 0.05cs + 0vs)
DIGITAL/nxor_unit_test............................passed (Time: 0s = 0.04cs + 0vs)
DIGITAL/or4_unit_test.............................passed (Time: 0s = 0.05cs + 0vs)
DIGITAL/tff_unit_test.............................passed (Time: 0s = 0.05cs + 0vs)
DIGITAL/xor_unit_test.............................passed (Time: 0s = 0.04cs + 0vs)
DIGITAL_DFF/DFF_Verify_Xyce.......................passed (Time: 0s = 0.03cs + 0vs)
DIODE/Level2_Temp_Dep_Breakdown...................passed[sh] (Time: 1s = 0.11cs + 0vs)
DIODE/Zener_5229..................................passed (Time: 0s = 0.04cs + 0vs)
DIODE/diode.......................................passed (Time: 0s = 0.05cs + 0vs)
DIODE_ANALYTIC/breakdown_model....................passed[sh] (Time: 0s = 0.09cs + 0vs)
DIODE_ANALYTIC/forward_model......................passed[sh] (Time: 0s = 0.12cs + 0vs)
DIODE_ANALYTIC/reverse_model......................passed[sh] (Time: 0s = 0.10cs + 0vs)
ERROPTION/rc_osc..................................passed[sh] (Time: 0s = 0.15cs + 0vs)
EXPPRINT/expPrint.................................passed (Time: 1s = 0.02cs + 1vs)
FOURIER/CMOS_inverter.............................passed[sh] (Time: 0s = 0.12cs + 0vs)
FOURIER/CMOS_inverter_lead_currents...............passed[sh] (Time: 0s = 0.09cs + 0vs)
FOURIER/bad_dot_four_line1........................passed[sh] (Time: 0s = 0.05cs + 0vs)
FOURIER/bad_dot_four_line2........................passed[sh] (Time: 0s = 0.06cs + 0vs)
FOURIER/bad_dot_four_line3........................passed[sh] (Time: 0s = 0.07cs + 0vs)
FOURIER/gilbert_cell..............................passed[sh] (Time: 0s = 0.13cs + 0vs)
FOURIER/lead_current_not_on_print_line............passed[sh] (Time: 1s = 0.10cs + 0vs)
FOURIER/lead_current_power........................passed[sh] (Time: 0s = 0.08cs + 0vs)
GLOBALNODE/global.................................passed[sh] (Time: 0s = 0.08cs + 0vs)
GLOBALNODE/global2................................passed (Time: 0s = 0.02cs + 0vs)
GLOBALPAR/gp2.....................................passed (Time: 0s = 0.03cs + 0vs)
GLOBALPAR/gp3.....................................passed (Time: 0s = 0.02cs + 0vs)
GLOBALPAR/gp_func.................................passed (Time: 0s = 0.03cs + 0vs)
GLOBALPAR/gp_loca.................................passed (Time: 0s = 0.03cs + 0vs)
GMIN_STEPPING/gstep...............................passed[sh] (Time: 0s = 0.06cs + 0vs)
GMIN_STEPPING/gstep2..............................passed[sh] (Time: 1s = 0.13cs + 0vs)
GMIN_STEPPING/gstep_cont3.........................passed[sh] (Time: 0s = 0.09cs + 0vs)
GMIN_STEPPING/gstep_dotStep.......................passed (Time: 0s = 0.04cs + 0vs)
GMIN_STEPPING/gstep_minconduct....................passed[sh] (Time: 0s = 0.02cs + 0vs)
GROUND_PATH/IndPathToGround.......................passed[sh] (Time: 0s = 0.06cs + 0vs)
GSWITCH/gswitch...................................passed (Time: 0s = 0.02cs + 0vs)
HB/circuit3.......................................passed[sh] (Time: 1s = 0.69cs + 0vs)
HB/gilbert_cell_hb................................passed[sh] (Time: 0s = 0.25cs + 0vs)
HB/gilbert_cell_hbTdsamples.......................passed[sh] (Time: 1s = 0.68cs + 0vs)
HB/gilbert_cell_hbt...............................passed[sh] (Time: 0s = 0.48cs + 0vs)
HB/gilbert_cell_hbt_tahb..........................passed[sh] (Time: 3s = 2.27cs + 0vs)
HB/invert_hb......................................passed[sh] (Time: 0s = 0.26cs + 0vs)
HB/invert_hb_accurate.............................passed[sh] (Time: 1s = 0.91cs + 0vs)
HB/invert_hb_accurate_nostartup...................passed[sh] (Time: 1s = 0.74cs + 0vs)
HB/invert_hb_lapack...............................passed[sh] (Time: 0s = 0.33cs + 0vs)
HB/RC/lcosc.......................................passed[sh] (Time: 0s = 0.11cs + 0vs)
HB/RC/lcstart.....................................passed[sh] (Time: 0s = 0.23cs + 0vs)
HB/RC/simpleRC-hb.................................passed[sh] (Time: 1s = 0.16cs + 0vs)
HB/RC/simpleRC-hbIC1..............................passed[sh] (Time: 0s = 0.11cs + 0vs)
HB/RC/simpleRC-hbTdsamples........................passed[sh] (Time: 0s = 0.11cs + 0vs)
HICUM/fgum_TRANS_npn_full_sh......................passed (Time: 0s = 0.13cs + 0vs)
HICUM/fgum_ac_npn_full_sh_ac......................passed[sh] (Time: 1s = 0.53cs + 0vs)
HICUM/fgum_ac_npn_full_sh_dc......................passed[sh] (Time: 0s = 0.15cs + 0vs)
HICUM/fgum_dc_npn_full_sh.........................passed[sh] (Time: 0s = 0.15cs + 0vs)
HICUM/fout_npn_full_sh............................passed[sh] (Time: 0s = 0.29cs + 0vs)
HICUM/noise_npn_full_sh_ac........................passed[sh] (Time: 0s = 0.06cs + 0vs)
HICUM/HICUM_L0/fgum_TRANS_npn_full_sh.............passed (Time: 1s = 0.08cs + 1vs)
HICUM/HICUM_L0/fgum_ac_npn_full_sh_ac.............passed[sh] (Time: 1s = 1.24cs + 0vs)
HICUM/HICUM_L0/fgum_ac_npn_full_sh_dc.............passed[sh] (Time: 0s = 0.11cs + 0vs)
HICUM/HICUM_L0/fgum_dc_npn_full_sh................passed[sh] (Time: 0s = 0.12cs + 0vs)
HICUM/HICUM_L0/fout_npn_full_sh...................passed[sh] (Time: 0s = 0.17cs + 0vs)
HOMOTOPY/arclengthSimple..........................passed[sh] (Time: 1s = 0.72cs + 0vs)
HOMOTOPY/bjt_expord...............................passed (Time: 0s = 0.75cs + 0vs)
HOMOTOPY/continuation.............................passed[sh] (Time: 2s = 1.93cs + 0vs)
HOMOTOPY/continuation_bsim3.......................passed[sh] (Time: 1s = 0.26cs + 0vs)
HOMOTOPY/continuation_bsim4.......................passed[sh] (Time: 0s = 0.29cs + 0vs)
HOMOTOPY/continuation_mos1........................passed[sh] (Time: 0s = 0.23cs + 0vs)
HOMOTOPY/continuation_mos2........................passed[sh] (Time: 1s = 0.23cs + 0vs)
HOMOTOPY/continuation_mos3........................passed[sh] (Time: 0s = 0.24cs + 0vs)
HOMOTOPY/continuation_mos6........................passed[sh] (Time: 0s = 0.26cs + 0vs)
HOMOTOPY/schmidt..................................passed[sh] (Time: 0s = 0.77cs + 0vs)
IC_AND_NODESET/dcvolt_cap.........................passed[sh] (Time: 1s = 0.13cs + 0vs)
IC_AND_NODESET/dcvolt_cap2........................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/dcvolt_cap3........................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/dcvolt_cap4........................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/hussamp............................passed[sh] (Time: 1s = 0.50cs + 0vs)
IC_AND_NODESET/ic_bjt.............................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/ic_bjt2............................passed[sh] (Time: 0s = 0.14cs + 0vs)
IC_AND_NODESET/ic_cap.............................passed[sh] (Time: 0s = 0.14cs + 0vs)
IC_AND_NODESET/ic_cap2............................passed[sh] (Time: 1s = 0.13cs + 0vs)
IC_AND_NODESET/ic_cap3............................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/ic_cap4............................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/ic_comp............................passed[sh] (Time: 0s = 0.27cs + 0vs)
IC_AND_NODESET/ic_gmin............................passed[sh] (Time: 1s = 0.51cs + 0vs)
IC_AND_NODESET/ic_gmin_bjt........................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/nodeset_bjt........................passed[sh] (Time: 0s = 0.13cs + 0vs)
IC_AND_NODESET/nodeset_bjt2.......................passed[sh] (Time: 1s = 0.14cs + 0vs)
IC_AND_NODESET/pierce.............................passed (Time: 1s = 0.47cs + 1vs)
IC_AND_NODESET/pierce_noop........................passed[sh] (Time: 2s = 2.32cs + 0vs)
IC_AND_NODESET/ring_osc_bsim3_ic..................passed[sh] (Time: 0s = 0.30cs + 0vs)
IC_AND_NODESET/ring_osc_bsim4_ic..................passed[sh] (Time: 1s = 0.63cs + 0vs)
IEXP/iexp.........................................passed (Time: 0s = 0.03cs + 0vs)
INDUCTOR/ErrorMessageTest.........................passed[sh] (Time: 0s = 0.06cs + 0vs)
INDUCTOR/inductor.................................passed (Time: 0s = 0.02cs + 0vs)
INIT_CONDS/comparatorIC...........................passed (Time: 0s = 0.10cs + 0vs)
INIT_CONDS/comparatorICnonVector..................passed (Time: 1s = 0.11cs + 0vs)
INIT_CONDS/inv1xIC................................passed (Time: 0s = 0.15cs + 0vs)
INIT_CONDS/ring_osc_bsim3.........................passed (Time: 0s = 0.13cs + 0vs)
INVALID_CHARS/colon_fails_device_name.............passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/colon_in_node_name..................passed[sh] (Time: 0s = 0.04cs + 0vs)
INVALID_CHARS/comma_fails_device_name.............passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/comma_fails_node_name...............passed[sh] (Time: 1s = 0.07cs + 0vs)
INVALID_CHARS/double_quote_fails_device_name......passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/double_quote_fails_node_name........passed[sh] (Time: 0s = 0.05cs + 0vs)
INVALID_CHARS/equal_fails_device_name.............passed[sh] (Time: 0s = 0.07cs + 0vs)
INVALID_CHARS/equal_fails_node_name...............passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/left_curly_fails_device_name........passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/left_curly_fails_node_name..........passed[sh] (Time: 0s = 0.07cs + 0vs)
INVALID_CHARS/parens_fail_device_name.............passed[sh] (Time: 0s = 0.07cs + 0vs)
INVALID_CHARS/parens_fail_node_name...............passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/right_curly_fails...................passed[sh] (Time: 0s = 0.07cs + 0vs)
INVALID_CHARS/semicolon_fails.....................passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/single_quote_fails..................passed[sh] (Time: 0s = 0.07cs + 0vs)
INVALID_CHARS/valid_chars_device_node_names.......passed[sh] (Time: 0s = 0.06cs + 0vs)
INVALID_CHARS/valid_chars_ydevice_names...........passed[sh] (Time: 0s = 0.09cs + 0vs)
INVERT1/invert1...................................passed (Time: 0s = 0.04cs + 0vs)
IPULSE/ipulse.....................................passed (Time: 0s = 0.04cs + 0vs)
IPWL/ipwl.........................................passed (Time: 1s = 0.02cs + 0vs)
ISFFM/isffm.......................................passed (Time: 0s = 0.08cs + 0vs)
ISIN/isin.........................................passed (Time: 0s = 0.03cs + 0vs)
ISWITCH/iswitch...................................passed (Time: 0s = 0.03cs + 0vs)
ISWITCH/iswitch_spice.............................passed (Time: 0s = 0.03cs + 0vs)
JUNCAP200/DiodeClipper............................passed (Time: 0s = 0.04cs + 0vs)
LEAD_CURRENTS/lead_bjt_gear.......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_bjt_trap.......................passed[sh] (Time: 1s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_bsim3_gear.....................passed[sh] (Time: 0s = 0.21cs + 0vs)
LEAD_CURRENTS/lead_bsim3_trap.....................passed[sh] (Time: 0s = 0.20cs + 0vs)
LEAD_CURRENTS/lead_bsim4_gear.....................passed[sh] (Time: 1s = 0.20cs + 0vs)
LEAD_CURRENTS/lead_bsim4_trap.....................passed[sh] (Time: 0s = 0.18cs + 0vs)
LEAD_CURRENTS/lead_bsrc_gear......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_bsrc_trap......................passed[sh] (Time: 0s = 0.11cs + 0vs)
LEAD_CURRENTS/lead_dio1_gear......................passed[sh] (Time: 0s = 0.11cs + 0vs)
LEAD_CURRENTS/lead_dio1_trap......................passed[sh] (Time: 0s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_for_invalid_device.............passed[sh] (Time: 0s = 0.06cs + 0vs)
LEAD_CURRENTS/lead_ind_gear.......................passed[sh] (Time: 0s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_ind_trap.......................passed[sh] (Time: 1s = 0.11cs + 0vs)
LEAD_CURRENTS/lead_mil_gear.......................passed[sh] (Time: 0s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_mil_trap.......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_min_gear.......................passed[sh] (Time: 0s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_min_trap.......................passed[sh] (Time: 1s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_njfet_gear.....................passed[sh] (Time: 0s = 0.16cs + 0vs)
LEAD_CURRENTS/lead_njfet_trap.....................passed[sh] (Time: 0s = 0.16cs + 0vs)
LEAD_CURRENTS/lead_nmes_gear......................passed[sh] (Time: 0s = 0.14cs + 0vs)
LEAD_CURRENTS/lead_nmes_trap......................passed[sh] (Time: 0s = 0.14cs + 0vs)
LEAD_CURRENTS/lead_nmos1_gear.....................passed[sh] (Time: 0s = 0.17cs + 0vs)
LEAD_CURRENTS/lead_nmos1_trap.....................passed[sh] (Time: 0s = 0.18cs + 0vs)
LEAD_CURRENTS/lead_nmos3_gear.....................passed[sh] (Time: 1s = 0.17cs + 0vs)
LEAD_CURRENTS/lead_nmos3_trap.....................passed[sh] (Time: 0s = 0.18cs + 0vs)
LEAD_CURRENTS/lead_nsoi_gear......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_nsoi_trap......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_pjfet_tran_gear................passed[sh] (Time: 0s = 0.69cs + 0vs)
LEAD_CURRENTS/lead_pjfet_tran_trap................passed[sh] (Time: 1s = 0.69cs + 0vs)
LEAD_CURRENTS/lead_pmos1..........................passed[sh] (Time: 0s = 0.06cs + 0vs)
LEAD_CURRENTS/lead_psoi_gear......................passed[sh] (Time: 1s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_psoi_trap......................passed[sh] (Time: 0s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_r_c_gear.......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_r_c_trap.......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_sw_gear........................passed[sh] (Time: 1s = 0.12cs + 0vs)
LEAD_CURRENTS/lead_sw_trap........................passed[sh] (Time: 0s = 0.11cs + 0vs)
LEAD_CURRENTS/lead_tra_gear.......................passed[sh] (Time: 0s = 0.13cs + 0vs)
LEAD_CURRENTS/lead_tra_trap.......................passed[sh] (Time: 0s = 0.14cs + 0vs)
LEAD_CURRENTS/lead_unsupported_devices............passed[sh] (Time: 0s = 0.06cs + 0vs)
LEAD_CURRENTS/lead_vdmos_gear.....................passed[sh] (Time: 0s = 0.18cs + 0vs)
LEAD_CURRENTS/lead_vdmos_trap.....................passed[sh] (Time: 0s = 0.22cs + 0vs)
LIB/lib...........................................passed (Time: 0s = 0.02cs + 0vs)
LOAD/load.........................................passed (Time: 0s = 0.13cs + 0vs)
LTRA/ErrorMessageTest.............................passed[sh] (Time: 1s = 0.07cs + 0vs)
LTRA/bad_model_parameters.........................passed[sh] (Time: 0s = 0.06cs + 0vs)
LTRA/ltra-rc......................................passed (Time: 0s = 0.36cs + 0vs)
LTRA/ltra1........................................passed (Time: 1s = 0.37cs + 0vs)
LTRA/ltra2........................................passed (Time: 0s = 0.05cs + 0vs)
LTRA/ltra3........................................passed (Time: 1s = 1.34cs + 0vs)
LTRA/ltra_LC_hb...................................passed[sh] (Time: 3s = 2.36cs + 0vs)
LTRA/ltra_RLC_hb..................................passed[sh] (Time: 15s = 15.18cs + 0vs)
LTRA/ltra_step....................................passed[sh] (Time: 1s = 1.39cs + 0vs)
LTRA/square-wave-gen-resistor-compact.............passed (Time: 1s = 0.07cs + 1vs)
LTRA/square-wave-gen-resistor.....................passed (Time: 0s = 0.05cs + 0vs)
LTRA/zero_length_lc_line..........................passed[sh] (Time: 0s = 0.07cs + 0vs)
LTRA/zero_length_rc_rg_line.......................passed (Time: 0s = 0.07cs + 0vs)
LTRA/zero_length_rlc_line.........................passed[sh] (Time: 0s = 0.06cs + 0vs)
LUMPEDLINE/lumpedLine.............................passed[sh] (Time: 12s = 12.35cs + 0vs)
MAX_TIME_STEP/max_time_step.......................passed[sh] (Time: 1s = 0.09cs + 0vs)
MCNC_BJT_LATCH/latch..............................passed (Time: 0s = 0.07cs + 0vs)
MCNC_BJT_OPAMPAL/opampal..........................passed (Time: 0s = 0.69cs + 0vs)
MCNC_BJT_RCA/rca..................................passed (Time: 1s = 0.06cs + 0vs)
MEASURE/AverageTest...............................passed[sh] (Time: 0s = 0.20cs + 0vs)
MEASURE/AverageTestInc............................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/DerivativeATequalityTest..................passed[sh] (Time: 1s = 0.13cs + 0vs)
MEASURE/DerivativeTest............................passed[sh] (Time: 0s = 0.17cs + 0vs)
MEASURE/DerivativeVariableTest....................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/DutyTest..................................passed[sh] (Time: 0s = 0.19cs + 0vs)
MEASURE/EquationEvalTest..........................passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE/ErrorMessageTest..........................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/ErrorTest.................................passed[sh] (Time: 0s = 0.18cs + 0vs)
MEASURE/ErrorTestAC...............................passed[sh] (Time: 1s = 0.16cs + 0vs)
MEASURE/ErrorTestCurrentPowerExp..................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/FindWhenTest..............................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEASURE/FindWhenTestInc...........................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/FindWhenVariableTest......................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/FourierTest...............................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/FourierTestFromToTD.......................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/FreqTest..................................passed[sh] (Time: 1s = 0.15cs + 0vs)
MEASURE/IntegralTest..............................passed[sh] (Time: 0s = 0.16cs + 0vs)
MEASURE/LeadCurrentAndPowerTest...................passed[sh] (Time: 0s = 0.09cs + 0vs)
MEASURE/LeadCurrentNotOnPrintLineTest.............passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE/MaxDiffTest...............................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/MaxTest...................................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/MeasprintOption...........................passed[sh] (Time: 1s = 0.51cs + 0vs)
MEASURE/MinTest...................................passed[sh] (Time: 0s = 0.16cs + 0vs)
MEASURE/Off_TimeTest..............................passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE/On_TimeTest...............................passed[sh] (Time: 1s = 0.15cs + 0vs)
MEASURE/PPTest....................................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/PrecisionTest.............................passed[sh] (Time: 0s = 0.08cs + 0vs)
MEASURE/PrintOptionTest...........................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/RFCEquality...............................passed[sh] (Time: 1s = 0.13cs + 0vs)
MEASURE/RFCEqualityTrigTarg.......................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/RMSTest...................................passed[sh] (Time: 0s = 0.20cs + 0vs)
MEASURE/RiseFallCrossTest.........................passed[sh] (Time: 0s = 0.20cs + 0vs)
MEASURE/RiseFallDelay.............................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEASURE/RiseFallDelayFT...........................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/RiseFallDelayMisc.........................passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE/RiseFallDelayValSyntax....................passed[sh] (Time: 0s = 0.10cs + 0vs)
MEASURE/bad_dot_measure_line1.....................passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE/bad_dot_measure_line2.....................passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE/bad_dot_measure_line3.....................passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE/bad_dot_measure_line4.....................passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/bad_dot_measure_line5.....................passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/bad_error_measure_line1...................passed[sh] (Time: 0s = 0.05cs + 0vs)
MEASURE/dotOpNoTran...............................passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/invalid_nodes.............................passed[sh] (Time: 0s = 0.05cs + 0vs)
MEASURE/measure_ac_analysis_mismatch..............passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE/measure_tran_analysis_mismatch............passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/unsupported_ac_measure_types..............passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/OpTranRemeasureError............passed[sh] (Time: 0s = 0.09cs + 0vs)
MEASURE/REMEASURE/RemeasureCsdData................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/REMEASURE/RemeasureCsvData................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/REMEASURE/RemeasureFourierCsdData.........passed[sh] (Time: 1s = 0.13cs + 0vs)
MEASURE/REMEASURE/RemeasureFourierStepCsdData.....passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/REMEASURE/RemeasurePrnData................passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/REMEASURE/RemeasurePrnDataCommaDelim......passed[sh] (Time: 0s = 0.12cs + 0vs)
MEASURE/REMEASURE/RemeasureStdOutTest.............passed[sh] (Time: 0s = 0.09cs + 0vs)
MEASURE/REMEASURE/RemeasureStepCsdData............passed[sh] (Time: 1s = 0.26cs + 0vs)
MEASURE/REMEASURE/RemeasureStepCsvData............passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/REMEASURE/RemeasureStepPrnDataCommaDel+...passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE/REMEASURE/UnsupportedRemeasureTypes.......passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/bad_remeasure_line1.............passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/bad_remeasure_line2.............passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/bad_remeasure_line3.............passed[sh] (Time: 1s = 0.06cs + 0vs)
MEASURE/REMEASURE/bad_remeasure_line4.............passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/node_not_in_remeasured_file.....passed[sh] (Time: 0s = 0.06cs + 0vs)
MEASURE/REMEASURE/remeasure_tran_analysis_mism+...passed[sh] (Time: 0s = 0.05cs + 0vs)
MEASURE/STEP/AverageTest..........................passed[sh] (Time: 1s = 1.24cs + 0vs)
MEASURE/STEP/DerivativeTest.......................passed[sh] (Time: 1s = 0.49cs + 0vs)
MEASURE/STEP/DerivativeVariableTest...............passed[sh] (Time: 0s = 0.23cs + 0vs)
MEASURE/STEP/DutyTest.............................passed[sh] (Time: 2s = 1.25cs + 0vs)
MEASURE/STEP/EquationEvalTest.....................passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE/STEP/ErrorMessageTest.....................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE/STEP/ErrorTest............................passed[sh] (Time: 1s = 0.24cs + 0vs)
MEASURE/STEP/ErrorTestAC..........................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEASURE/STEP/FindWhenTest.........................passed[sh] (Time: 1s = 0.56cs + 0vs)
MEASURE/STEP/FindWhenVariableTest.................passed[sh] (Time: 0s = 0.24cs + 0vs)
MEASURE/STEP/FourierTest..........................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEASURE/STEP/FreqTest.............................passed[sh] (Time: 1s = 0.96cs + 0vs)
MEASURE/STEP/IntegralTest.........................passed[sh] (Time: 1s = 0.41cs + 0vs)
MEASURE/STEP/MaxDiffTest..........................passed[sh] (Time: 0s = 0.28cs + 0vs)
MEASURE/STEP/MaxTest..............................passed[sh] (Time: 1s = 0.36cs + 0vs)
MEASURE/STEP/MeasprintOption......................passed[sh] (Time: 1s = 0.67cs + 0vs)
MEASURE/STEP/MinTest..............................passed[sh] (Time: 0s = 0.38cs + 0vs)
MEASURE/STEP/Off_TimeTest.........................passed[sh] (Time: 3s = 2.50cs + 0vs)
MEASURE/STEP/On_TimeTest..........................passed[sh] (Time: 2s = 2.48cs + 0vs)
MEASURE/STEP/PPTest...............................passed[sh] (Time: 1s = 0.37cs + 0vs)
MEASURE/STEP/RMSTest..............................passed[sh] (Time: 1s = 0.56cs + 0vs)
MEASURE/STEP/RiseFallCrossTest....................passed[sh] (Time: 0s = 0.29cs + 0vs)
MEASURE/STEP/RiseFallDelay........................passed[sh] (Time: 1s = 0.45cs + 0vs)
MEASURE/STEP/RiseFallDelayMisc....................passed[sh] (Time: 0s = 0.27cs + 0vs)
MEASURE/STEP/RiseFallDelayValSyntax...............passed[sh] (Time: 0s = 0.16cs + 0vs)
MEASURE_DC/DotOpDotDC.............................passed[sh] (Time: 0s = 0.09cs + 0vs)
MEASURE_DC/DotOpOnly..............................passed[sh] (Time: 1s = 0.11cs + 0vs)
MEASURE_DC/DoubleDCOP.............................passed[sh] (Time: 0s = 0.46cs + 0vs)
MEASURE_DC/EquationEvalTestDC.....................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE_DC/ErrorTest1DC...........................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE_DC/ErrorTest2DC...........................passed[sh] (Time: 1s = 0.15cs + 0vs)
MEASURE_DC/LeadCurrentAndPowerTestDC..............passed[sh] (Time: 0s = 0.11cs + 0vs)
MEASURE_DC/MaxMinPPTest1DC........................passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE_DC/MaxMinPPTest2DC........................passed[sh] (Time: 0s = 0.15cs + 0vs)
MEASURE_DC/bad_error_measure_line1................passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE_DC/measure_dc_analysis_mismatch...........passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE_DC/unsupported_dc_measure_types...........passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE_DC/REMEASURE/OpDCRemeasureError...........passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE_DC/REMEASURE/RemeasureDecadeDCStep........passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE_DC/REMEASURE/RemeasureListDCStep..........passed[sh] (Time: 0s = 0.14cs + 0vs)
MEASURE_DC/REMEASURE/RemeasureNoIndexError........passed[sh] (Time: 0s = 0.07cs + 0vs)
MEASURE_DC/REMEASURE/RemeasureOctaveDCStep........passed[sh] (Time: 0s = 0.13cs + 0vs)
MEASURE_DC/REMEASURE/remeasure_dc_analysis_mis+...passed[sh] (Time: 0s = 0.05cs + 0vs)
MEASURE_DC/STEP/EquationEvalTestDC................passed[sh] (Time: 1s = 0.20cs + 0vs)
MEASURE_DC/STEP/ErrorTest1DC......................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEASURE_DC/STEP/MaxMinPPTest1DC...................passed[sh] (Time: 0s = 0.21cs + 0vs)
MEMRISTOR/memristorPEM1...........................passed (Time: 0s = 0.02cs + 0vs)
MEMRISTOR/memristorPEM1wIC........................passed (Time: 0s = 0.03cs + 0vs)
MEMRISTOR/memristorPEM2...........................passed (Time: 0s = 0.05cs + 0vs)
MEMRISTOR/memristorTEAM_lp_trap...................passed[sh] (Time: 1s = 0.63cs + 0vs)
MEMRISTOR/memristorTEAM_test......................passed (Time: 1s = 0.60cs + 0vs)
MEMRISTOR/memristorYakopcic.......................passed[sh] (Time: 0s = 0.08cs + 0vs)
Message/Device/CircuitBlock_addTableData_1........passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/CircuitBlock_handlePass1_1.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/Core_DeviceSource_SinData..........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/Core_SafeBarrier_1.................passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceBlock_extractBasicDeviceD+...passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Device/DeviceBlock_extractBehavioralDe+...passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractInstanceParam...passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractMIDeviceData....passed[sh] (Time: 0s = 0.08cs + 0vs)
Message/Device/DeviceBlock_extractModelName_1.....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceBlock_extractModelName_2.....passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractModelName_3.....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceBlock_extractModelName_4.....passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractNodes_1.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractSubcircuitIn+...passed[sh] (Time: 1s = 0.06cs + 0vs)
Message/Device/DeviceBlock_extractSwitchDevice+...passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceBlock_extractUDeviceData.....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceBlock_extractYDeviceData.....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Device/DeviceEntity_sensAvailDefaultPa+...passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceEntity_setDefaultParam.......passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceModel_setModParams_1.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceModel_setModParams_2.........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Device/DeviceModel_setModParams_3.........passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Device/DeviceModel_setModParams_4.........passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Device/Device_BSIM3SOI_WLwarning..........passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Function/func_error.......................passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Input/Bad_Netlist_Filename................passed[sh] (Time: 0s = 0.04cs + 0vs)
Message/Input/CircuitBlock_extractSubcircuitDa+...passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/CircuitBlock_extractSubcircuitDa+...passed[sh] (Time: 1s = 0.06cs + 0vs)
Message/Input/CircuitBlock_handleLinePass1_1......passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Input/CircuitBlock_parseIncludeFile_2a....passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/CircuitBlock_parseIncludeFile_2b....passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/CircuitContext_beginSubcircuitCo+...passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Input/CmdParse_usage......................passed[sh] (Time: 0s = 0.08cs + 0vs)
Message/Input/DCOP_Restart_Removed................passed[sh] (Time: 0s = 0.08cs + 0vs)
Message/Input/DC_excessArgs.......................passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/DeviceBlock_extractSourceFields_1...passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/DeviceBlock_extractSourceFields_2...passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Input/IC_And_NODESET_Specified............passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/IC_At_Missing_Node_Warning..........passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Input/Invalid_TimeInt.....................passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/NODESET_At_Missing_Node_Warning.....passed[sh] (Time: 1s = 0.07cs + 0vs)
Message/Input/Netlist_Is_A_Dir....................passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Input/OptionBlock_extractOptionsData_1....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Input/OptionBlock_extractOptionsData_2....passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/PRINT_Line_Missing_Paren............passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Input/ParameterBlock_extractModelData.....passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Input/ParsingHelpers_handleEndlLine1......passed[sh] (Time: 0s = 0.05cs + 0vs)
Message/Input/ParsingHelpers_handleEndlLine2......passed[sh] (Time: 1s = 0.06cs + 0vs)
Message/Input/ParsingHelpers_handleIncludeLine....passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Input/bad_dot_save_line...................passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Print/bad_device_parameter................passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Print/bad_nodename........................passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Print/bad_variable........................passed[sh] (Time: 0s = 0.07cs + 0vs)
Message/Print/multiple_format_same_file...........passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Subcircuit/subckt_a2_dup_error............passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Subcircuit/subckt_j1_dup_error............passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Subcircuit/subckt_missing_ends............passed[sh] (Time: 0s = 0.06cs + 0vs)
Message/Topology/Supernode_Warning................passed[sh] (Time: 0s = 0.07cs + 0vs)
MEXTRAM/FGummel_Ib................................passed[sh] (Time: 0s = 0.17cs + 0vs)
MEXTRAM/FGummel_Ib_TRANS..........................passed (Time: 0s = 0.04cs + 0vs)
MEXTRAM/FGummel_Ib_noFlip_P_TRANS.................passed (Time: 0s = 0.04cs + 0vs)
MEXTRAM/FGummel_Ic................................passed[sh] (Time: 0s = 0.19cs + 0vs)
MEXTRAM/FGummel_low_Ib............................passed[sh] (Time: 1s = 0.15cs + 0vs)
MEXTRAM/FGummel_low_Ic............................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEXTRAM/FGummel_low_MLF_Ib........................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEXTRAM/FGummel_low_MLF_Ic........................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEXTRAM/RGummel_Ib................................passed[sh] (Time: 0s = 0.14cs + 0vs)
MEXTRAM/RGummel_Ie................................passed[sh] (Time: 1s = 0.13cs + 0vs)
MEXTRAM/acBias_Gbb................................passed[sh] (Time: 0s = 0.16cs + 0vs)
MEXTRAM/acBias_Gcc................................passed[sh] (Time: 0s = 0.16cs + 0vs)
MEXTRAM/acFreq_Gbb................................passed[sh] (Time: 0s = 0.10cs + 0vs)
MINCAPRES/mincr...................................passed (Time: 0s = 0.08cs + 0vs)
MINDUCTORS/MINDUCTORS.............................passed (Time: 0s = 0.03cs + 0vs)
MINDUCTORS/cpldLMIs...............................passed (Time: 0s = 0.04cs + 0vs)
MODEL_BINNING/comparatorBinning...................passed[sh] (Time: 1s = 0.26cs + 0vs)
MODEL_BINNING/complicatedLW.......................passed (Time: 0s = 0.06cs + 0vs)
MODEL_BINNING/dcFailBinning.......................passed[sh] (Time: 0s = 0.06cs + 0vs)
MODEL_BINNING/dcModelBinning......................passed[sh] (Time: 0s = 0.11cs + 0vs)
MODEL_BINNING/tranInverterBinning.................passed[sh] (Time: 0s = 0.13cs + 0vs)
MOS13_IC/invert42_mos3............................passed[sh] (Time: 5s = 4.58cs + 0vs)
MOS13_IC/invert50_mos1............................passed[sh] (Time: 6s = 5.78cs + 0vs)
MOS6/invert_mos6..................................passed (Time: 0s = 0.04cs + 0vs)
MOS6/nmos6_dc.....................................passed (Time: 0s = 0.19cs + 0vs)
MOS6/pmos6_dc.....................................passed (Time: 0s = 0.07cs + 0vs)
MOSFET1_TEMP/CD40P_Temp1..........................passed (Time: 0s = 0.02cs + 0vs)
MOSFET_TempDep/mos1236_temp_dep...................passed[sh] (Time: 2s = 1.10cs + 0vs)
MPDE/invert1......................................passed[sh] (Time: 0s = 0.44cs + 0vs)