-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenCOG_U1604_AtomSpace.log
1511 lines (1484 loc) · 78.7 KB
/
OpenCOG_U1604_AtomSpace.log
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
Started by user [8mha:////4L2jTPWu9zIb56dnp8RqVObesKKV2DVGI0jJXlam1DqAAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAzWEgZu/dLi1CL9xJTczDwAj6GcLcAAAAA=[0madmin
Running as SYSTEM
Building in workspace /var/lib/jenkins/workspace/OpenCOG_U1604_AtomSpace
[OpenCOG_U1604_AtomSpace] $ /bin/sh -xe /tmp/jenkins3185681518255531066.sh
+ COGDIR=../OpenCOG_U1604
+ . ../OpenCOG_U1604/build.docker/docker.env
+ CID=9e565ab02a795cc6af2d7ad72f019ff205a6d4d21c7bfe517534627e16dceb1a
+ DKRUNROOT=docker exec --user root 9e565ab02a795cc6af2d7ad72f019ff205a6d4d21c7bfe517534627e16dceb1a
+ DKRUNUSER=docker exec --user jenkins 9e565ab02a795cc6af2d7ad72f019ff205a6d4d21c7bfe517534627e16dceb1a
+ UID=125
+ GID=132
+ LOGFILE=/var/lib/jenkins/jobs/OpenCOG_U1604_AtomSpace/builds/434/log
+ cat
**********************************************************
**********************************************************
**********************************************************
**********************************************************
***** *****
***** Atomspace TEST *****
***** *****
**********************************************************
**********************************************************
**********************************************************
**********************************************************
+ echo GIT_COMMIT=
GIT_COMMIT=
+ echo GIT_BRANCH=
GIT_BRANCH=
+ echo GIT_URL=
GIT_URL=
+ WDIR=atomspace
+ JOBDIR=../OpenCOG_U1604/dependencies
+ cat
+ chmod +x ../OpenCOG_U1604/dependencies/job1
+ docker exec --user jenkins 9e565ab02a795cc6af2d7ad72f019ff205a6d4d21c7bfe517534627e16dceb1a bash dependencies/job1
PWD is /home/opencog/atomspace/build
commit 99a88a4898abd3b12e93257d6634a0012d52b3d4
Author: Linas Vepstas <[email protected]>
Date: Mon Apr 22 18:00:32 2019 -0500
Restore unit test code deleted in #2156
diff --git a/tests/atoms/truthvalue/IndefiniteTruthValueUTest.cxxtest b/tests/atoms/truthvalue/IndefiniteTruthValueUTest.cxxtest
index a793474..3a086d5 100644
--- a/tests/atoms/truthvalue/IndefiniteTruthValueUTest.cxxtest
+++ b/tests/atoms/truthvalue/IndefiniteTruthValueUTest.cxxtest
@@ -379,6 +379,46 @@ public:
}
}
+ void testClone() {
+ for (int i = 0; i < NUM_TVS; i++) {
+ TruthValuePtr clon = std::make_shared<IndefiniteTruthValue>(*tvs[i]);
+ IndefiniteTruthValuePtr clonedTv = IndefiniteTVCast(clon);
+ TS_ASSERT(fabs(clonedTv->getL() - ls[i]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(fabs(clonedTv->getU() - us[i]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(fabs(clonedTv->getConfidenceLevel() - IndefiniteTruthValue::DEFAULT_CONFIDENCE_LEVEL) <= FLOAT_ACCEPTABLE_ERROR);
+ //compute diff using a method provided with the UTest
+ strength_t computedDiff = computeDiff(clonedTv->getL(), clonedTv->getU(),
+ default_k, clonedTv->getConfidenceLevel());
+ TS_ASSERT(isApproxEq(clonedTv->getDiff(), computedDiff, DIFF_ACCEPTABLE_ERROR));
+ TS_ASSERT(clonedTv->isSymmetric());
+ TS_ASSERT(fabs(clonedTv->get_mean() - means[i]) <= ERROR_THRESHOLD);
+ count_t expectedCount = count(ls[i], us[i]);
+ confidence_t expectedConfidence = confidence(ls[i], us[i]);
+ TS_ASSERT(fabs(clonedTv->get_count() - expectedCount) <= ERROR_THRESHOLD);
+ TS_ASSERT(fabs(clonedTv->get_confidence() - expectedConfidence) <= ERROR_THRESHOLD);
+ }
+ // Changes all attributes and check if clone still works fine.
+ tvs[0]->setL(ls[1]);
+ tvs[0]->setU(us[1]);
+ tvs[0]->setConfidenceLevel(IndefiniteTruthValue::DEFAULT_CONFIDENCE_LEVEL + 0.1f);
+ tvs[0]->setDiff(0.1f);
+ //tvs[0]->setSymmetric(false); Cannot call this yet because it thows an exception (asymmetric indefinite tv is not implemented)
+ tvs[0]->setMean(means[1]);
+ TruthValuePtr clon = std::make_shared<IndefiniteTruthValue>(*tvs[0]);
+ IndefiniteTruthValuePtr clonedTv = IndefiniteTVCast(clon);
+ TS_ASSERT(fabs(clonedTv->getL() - ls[1]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(fabs(clonedTv->getU() - us[1]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(fabs(clonedTv->getConfidenceLevel() - (IndefiniteTruthValue::DEFAULT_CONFIDENCE_LEVEL + 0.1f)) <= ERROR_THRESHOLD);
+ TS_ASSERT(fabs(clonedTv->getDiff() - 0.1f) <= ERROR_THRESHOLD);
+ //TS_ASSERT(!clonedTv->isSymmetric());
+ TS_ASSERT(clonedTv->isSymmetric());
+ TS_ASSERT(fabs(clonedTv->get_mean() - means[1]) <= ERROR_THRESHOLD);
+ count_t expectedCount = count(ls[1], us[1]);
+ confidence_t expectedConfidence = confidence(ls[1], us[1]);
+ TS_ASSERT(fabs(clonedTv->get_count() - expectedCount) <= ERROR_THRESHOLD);
+ TS_ASSERT(fabs(clonedTv->get_confidence() - expectedConfidence) <= ERROR_THRESHOLD);
+ }
+
void testSetAndGetFirstOrderDistribution() {
for (unsigned int i = 0; i < NUM_TVS; i++) {
IndefiniteTruthValue* tv = tvs[i];
diff --git a/tests/atoms/truthvalue/SimpleTruthValueUTest.cxxtest b/tests/atoms/truthvalue/SimpleTruthValueUTest.cxxtest
index 1df6ec5..12b27ea 100644
--- a/tests/atoms/truthvalue/SimpleTruthValueUTest.cxxtest
+++ b/tests/atoms/truthvalue/SimpleTruthValueUTest.cxxtest
@@ -104,6 +104,15 @@ public:
}
}
+ void testClone() {
+ for (int i = 0; i < NUM_TVS; i++) {
+ TruthValuePtr clonedTv = std::make_shared<const SimpleTruthValue>(*tvs[i]);
+ TS_ASSERT(fabs(clonedTv->get_mean() - means[i]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(fabs(clonedTv->get_count() - counts[i]) <= FLOAT_ACCEPTABLE_ERROR);
+ TS_ASSERT(clonedTv->get_confidence() - confidences[i] < FLOAT_ACCEPTABLE_ERROR);
+ }
+ }
+
void testGetType() {
for (int i = 0; i < NUM_TVS; i++) {
TS_ASSERT(tvs[i]->get_type() == SIMPLE_TRUTH_VALUE);
[ 0%] Built target opencog_atom_types
[ 1%] Built target persist-pg
[ 2%] Built target py_atomspace_header
[ 2%] Built target atom_types
[ 3%] Built target value
[ 4%] Generating ValueUTest.cpp
[ 5%] Built target truthvalue
[ 6%] Built target atombase
[ 6%] Generating ClassServerUTest.cpp
[ 6%] Generating HandleUTest.cpp
[ 6%] Generating NameServerUTest.cpp
Scanning dependencies of target ValueUTest
[ 6%] Built target PythonEval
[ 6%] Building CXX object tests/atoms/value/CMakeFiles/ValueUTest.dir/ValueUTest.cpp.o
[ 13%] Built target atomcore
Scanning dependencies of target ClassServerUTest
[ 14%] Built target clearbox
[ 14%] Building CXX object tests/atoms/base/CMakeFiles/ClassServerUTest.dir/ClassServerUTest.cpp.o
Scanning dependencies of target HandleUTest
Scanning dependencies of target NameServerUTest
[ 15%] Building CXX object tests/atoms/base/CMakeFiles/HandleUTest.dir/HandleUTest.cpp.o
[ 15%] Building CXX object tests/atoms/atom_types/CMakeFiles/NameServerUTest.dir/NameServerUTest.cpp.o
[ 16%] Built target execution
[ 18%] Built target query-engine
[ 20%] Built target lambda
[ 21%] Built target atomspace
[ 23%] Built target unify
[ 23%] Built target type_constructors
[ 23%] Generating IdenticalLinkUTest.cpp
[ 24%] Built target atomspace_cython
[ 24%] Built target atomspaceutils
[ 24%] Generating AlphaConvertUTest.cpp
[ 24%] Generating BetaReduceUTest.cpp
[ 26%] Built target smob
[ 26%] Generating DeleteLinkUTest.cpp
Scanning dependencies of target IdenticalLinkUTest
Scanning dependencies of target AlphaConvertUTest
Scanning dependencies of target BetaReduceUTest
[ 26%] Building CXX object tests/atoms/CMakeFiles/IdenticalLinkUTest.dir/IdenticalLinkUTest.cpp.o
[ 26%] Building CXX object tests/atoms/CMakeFiles/AlphaConvertUTest.dir/AlphaConvertUTest.cpp.o
[ 27%] Building CXX object tests/atoms/CMakeFiles/BetaReduceUTest.dir/BetaReduceUTest.cpp.o
Scanning dependencies of target DeleteLinkUTest
[ 28%] Building CXX object tests/atoms/CMakeFiles/DeleteLinkUTest.dir/DeleteLinkUTest.cpp.o
[ 28%] Linking CXX executable NameServerUTest
[ 28%] Built target NameServerUTest
[ 28%] Generating HashUTest.cpp
Scanning dependencies of target HashUTest
[ 29%] Building CXX object tests/atoms/CMakeFiles/HashUTest.dir/HashUTest.cpp.o
[ 29%] Linking CXX executable ValueUTest
[ 29%] Built target ValueUTest
[ 29%] Generating StateLinkUTest.cpp
Scanning dependencies of target StateLinkUTest
[ 29%] Building CXX object tests/atoms/CMakeFiles/StateLinkUTest.dir/StateLinkUTest.cpp.o
[ 29%] Linking CXX executable HandleUTest
[ 29%] Linking CXX executable ClassServerUTest
[ 29%] Built target HandleUTest
[ 29%] Generating DefineLinkUTest.cpp
[ 29%] Built target ClassServerUTest
Scanning dependencies of target DefineLinkUTest
[ 29%] Generating EqualLinkUTest.cpp
[ 30%] Building CXX object tests/atoms/CMakeFiles/DefineLinkUTest.dir/DefineLinkUTest.cpp.o
Scanning dependencies of target EqualLinkUTest
[ 31%] Building CXX object tests/atoms/CMakeFiles/EqualLinkUTest.dir/EqualLinkUTest.cpp.o
[ 31%] Linking CXX executable IdenticalLinkUTest
[ 31%] Built target IdenticalLinkUTest
[ 31%] Generating StreamUTest.cpp
Scanning dependencies of target StreamUTest
[ 31%] Building CXX object tests/atoms/CMakeFiles/StreamUTest.dir/StreamUTest.cpp.o
[ 31%] Linking CXX executable DeleteLinkUTest
[ 31%] Built target DeleteLinkUTest
[ 32%] Generating PutLinkUTest.cpp
[ 32%] Linking CXX executable BetaReduceUTest
[ 32%] Linking CXX executable AlphaConvertUTest
Scanning dependencies of target PutLinkUTest
[ 32%] Building CXX object tests/atoms/CMakeFiles/PutLinkUTest.dir/PutLinkUTest.cpp.o
[ 32%] Built target BetaReduceUTest
[ 32%] Generating GroundedSchemaLocalUTest.cpp
[ 32%] Built target AlphaConvertUTest
[ 34%] Generating VariablesUTest.cpp
Scanning dependencies of target GroundedSchemaLocalUTest
[ 34%] Building CXX object tests/atoms/CMakeFiles/GroundedSchemaLocalUTest.dir/GroundedSchemaLocalUTest.cpp.o
Scanning dependencies of target VariablesUTest
[ 34%] Building CXX object tests/atoms/CMakeFiles/VariablesUTest.dir/VariablesUTest.cpp.o
[ 34%] Linking CXX executable HashUTest
[ 34%] Built target HashUTest
[ 34%] Generating ScopeLinkUTest.cpp
Scanning dependencies of target ScopeLinkUTest
[ 34%] Building CXX object tests/atoms/CMakeFiles/ScopeLinkUTest.dir/ScopeLinkUTest.cpp.o
[ 34%] Linking CXX executable EqualLinkUTest
[ 34%] Linking CXX executable DefineLinkUTest
[ 34%] Built target EqualLinkUTest
[ 34%] Generating ExistsLinkUTest.cpp
[ 34%] Built target DefineLinkUTest
Scanning dependencies of target ExistsLinkUTest
[ 34%] Generating ParallelUTest.cpp
[ 34%] Building CXX object tests/atoms/CMakeFiles/ExistsLinkUTest.dir/ExistsLinkUTest.cpp.o
Scanning dependencies of target ParallelUTest
[ 34%] Building CXX object tests/atoms/CMakeFiles/ParallelUTest.dir/ParallelUTest.cpp.o
[ 35%] Linking CXX executable StateLinkUTest
[ 35%] Built target StateLinkUTest
[ 35%] Generating ValueOfUTest.cpp
Scanning dependencies of target ValueOfUTest
[ 35%] Building CXX object tests/atoms/CMakeFiles/ValueOfUTest.dir/ValueOfUTest.cpp.o
[ 35%] Linking CXX executable StreamUTest
[ 35%] Built target StreamUTest
[ 36%] Generating FindUtilsUTest.cpp
[ 36%] Linking CXX executable GroundedSchemaLocalUTest
Scanning dependencies of target FindUtilsUTest
[ 36%] Building CXX object tests/atoms/core/CMakeFiles/FindUtilsUTest.dir/FindUtilsUTest.cpp.o
[ 36%] Built target GroundedSchemaLocalUTest
[ 36%] Generating CondLinkUTest.cpp
Scanning dependencies of target CondLinkUTest
[ 36%] Building CXX object tests/atoms/core/CMakeFiles/CondLinkUTest.dir/CondLinkUTest.cpp.o
[ 36%] Linking CXX executable VariablesUTest
[ 36%] Built target VariablesUTest
[ 36%] Generating CheckersUTest.cpp
Scanning dependencies of target CheckersUTest
[ 36%] Building CXX object tests/atoms/core/CMakeFiles/CheckersUTest.dir/CheckersUTest.cpp.o
[ 36%] Linking CXX executable ScopeLinkUTest
[ 36%] Linking CXX executable ParallelUTest
[ 36%] Linking CXX executable ExistsLinkUTest
[ 36%] Built target ParallelUTest
[ 36%] Built target ScopeLinkUTest
[ 36%] Generating TVMergeUTest.cpp
[ 36%] Generating TVUTest.cpp
[ 36%] Built target ExistsLinkUTest
[ 37%] Generating SimpleTruthValueUTest.cpp
Scanning dependencies of target TVMergeUTest
Scanning dependencies of target TVUTest
Scanning dependencies of target SimpleTruthValueUTest
[ 37%] Building CXX object tests/atoms/truthvalue/CMakeFiles/TVMergeUTest.dir/TVMergeUTest.cpp.o
[ 37%] Building CXX object tests/atoms/truthvalue/CMakeFiles/SimpleTruthValueUTest.dir/SimpleTruthValueUTest.cpp.o
[ 38%] Building CXX object tests/atoms/truthvalue/CMakeFiles/TVUTest.dir/TVUTest.cpp.o
[ 38%] Linking CXX executable FindUtilsUTest
[ 39%] Linking CXX executable CondLinkUTest
[ 39%] Linking CXX executable CheckersUTest
[ 39%] Linking CXX executable ValueOfUTest
[ 39%] Built target CheckersUTest
[ 39%] Built target FindUtilsUTest
[ 39%] Generating EvidenceCountTruthValueUTest.cpp
[ 39%] Built target CondLinkUTest
[ 39%] Generating UnifyUTest.cpp
[ 39%] Built target ValueOfUTest
[ 39%] Generating AtomSpaceUtilsUTest.cpp
Scanning dependencies of target EvidenceCountTruthValueUTest
[ 40%] Built target dist-gearman
Scanning dependencies of target AtomSpaceUtilsUTest
[ 40%] Building CXX object tests/atoms/truthvalue/CMakeFiles/EvidenceCountTruthValueUTest.dir/EvidenceCountTruthValueUTest.cpp.o
[ 40%] Building CXX object tests/atomspaceutils/CMakeFiles/AtomSpaceUtilsUTest.dir/AtomSpaceUtilsUTest.cpp.o
[ 40%] Built target persist
Scanning dependencies of target UnifyUTest
[ 40%] Building CXX object tests/unify/CMakeFiles/UnifyUTest.dir/UnifyUTest.cpp.o
[ 42%] Built target persist-sql
[ 42%] Generating PythonEvalUTest.cpp
[ 42%] Linking CXX executable SimpleTruthValueUTest
Scanning dependencies of target PythonEvalUTest
[ 43%] Building CXX object tests/cython/CMakeFiles/PythonEvalUTest.dir/PythonEvalUTest.cpp.o
[ 43%] Built target SimpleTruthValueUTest
[ 45%] Built target utilities_cython
[ 45%] Linking CXX executable TVMergeUTest
[ 48%] Built target ure
[ 48%] Generating RemoveUTest.cpp
[ 48%] Linking CXX executable PutLinkUTest
Scanning dependencies of target RemoveUTest
[ 48%] Building CXX object tests/atomspace/CMakeFiles/RemoveUTest.dir/RemoveUTest.cpp.o
[ 48%] Built target TVMergeUTest
[ 48%] Generating LinkUTest.cpp
Scanning dependencies of target LinkUTest
[ 48%] Building CXX object tests/atomspace/CMakeFiles/LinkUTest.dir/LinkUTest.cpp.o
[ 48%] Built target PutLinkUTest
[ 49%] Generating NodeUTest.cpp
Scanning dependencies of target NodeUTest
[ 49%] Building CXX object tests/atomspace/CMakeFiles/NodeUTest.dir/NodeUTest.cpp.o
[ 49%] Linking CXX executable TVUTest
[ 49%] Linking CXX executable EvidenceCountTruthValueUTest
[ 49%] Built target TVUTest
[ 49%] Generating AtomUTest.cpp
Scanning dependencies of target AtomUTest
[ 49%] Building CXX object tests/atomspace/CMakeFiles/AtomUTest.dir/AtomUTest.cpp.o
[ 49%] Built target EvidenceCountTruthValueUTest
[ 49%] Generating UseCountUTest.cpp
Scanning dependencies of target UseCountUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/UseCountUTest.dir/UseCountUTest.cpp.o
[ 50%] Linking CXX executable NodeUTest
[ 50%] Linking CXX executable AtomSpaceUtilsUTest
[ 50%] Built target NodeUTest
[ 50%] Built target AtomSpaceUtilsUTest
[ 50%] Linking CXX executable PythonEvalUTest
[ 50%] Generating COWSpaceUTest.cpp
[ 50%] Linking CXX executable LinkUTest
[ 50%] Generating AtomTableUTest.cpp
Scanning dependencies of target COWSpaceUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/COWSpaceUTest.dir/COWSpaceUTest.cpp.o
Scanning dependencies of target AtomTableUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/AtomTableUTest.dir/AtomTableUTest.cpp.o
[ 50%] Built target PythonEvalUTest
[ 50%] Built target LinkUTest
[ 50%] Generating TLBUTest.cpp
[ 50%] Generating AtomSpaceAsyncUTest.cpp
Scanning dependencies of target TLBUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/TLBUTest.dir/TLBUTest.cpp.o
Scanning dependencies of target AtomSpaceAsyncUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/AtomSpaceAsyncUTest.dir/AtomSpaceAsyncUTest.cpp.o
[ 50%] Linking CXX executable RemoveUTest
[ 50%] Built target RemoveUTest
[ 50%] Generating AtomSpaceUTest.cpp
Scanning dependencies of target AtomSpaceUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/AtomSpaceUTest.dir/AtomSpaceUTest.cpp.o
[ 50%] Linking CXX executable AtomUTest
[ 50%] Built target AtomUTest
[ 50%] Generating HashMixUTest.cpp
Scanning dependencies of target HashMixUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/HashMixUTest.dir/HashMixUTest.cpp.o
[ 50%] Linking CXX executable UseCountUTest
[ 50%] Built target UseCountUTest
[ 50%] Generating MultiSpaceUTest.cpp
Scanning dependencies of target MultiSpaceUTest
[ 50%] Building CXX object tests/atomspace/CMakeFiles/MultiSpaceUTest.dir/MultiSpaceUTest.cpp.o
[ 51%] Linking CXX executable TLBUTest
[ 51%] Built target TLBUTest
[ 51%] Generating ReductUTest.cpp
Scanning dependencies of target ReductUTest
[ 52%] Building CXX object tests/atoms/CMakeFiles/ReductUTest.dir/ReductUTest.cpp.o
[ 53%] Linking CXX executable COWSpaceUTest
[ 53%] Built target COWSpaceUTest
[ 53%] Generating RandomUTest.cpp
Scanning dependencies of target RandomUTest
[ 54%] Building CXX object tests/atoms/CMakeFiles/RandomUTest.dir/RandomUTest.cpp.o
[ 56%] Linking CXX executable AtomTableUTest
[ 56%] Built target AtomTableUTest
[ 57%] Generating RewriteLinkUTest.cpp
Scanning dependencies of target RewriteLinkUTest
[ 57%] Building CXX object tests/atoms/CMakeFiles/RewriteLinkUTest.dir/RewriteLinkUTest.cpp.o
[ 57%] Linking CXX executable AtomSpaceAsyncUTest
[ 57%] Linking CXX executable HashMixUTest
[ 57%] Built target AtomSpaceAsyncUTest
[ 57%] Generating QuotationUTest.cpp
Scanning dependencies of target QuotationUTest
[ 58%] Building CXX object tests/atoms/CMakeFiles/QuotationUTest.dir/QuotationUTest.cpp.o
[ 58%] Built target HashMixUTest
[ 59%] Generating FreeLinkUTest.cpp
Scanning dependencies of target FreeLinkUTest
[ 59%] Building CXX object tests/atoms/CMakeFiles/FreeLinkUTest.dir/FreeLinkUTest.cpp.o
[ 59%] Linking CXX executable RandomUTest
[ 59%] Built target RandomUTest
[ 60%] Generating FormulaUTest.cpp
Scanning dependencies of target FormulaUTest
[ 60%] Building CXX object tests/atoms/CMakeFiles/FormulaUTest.dir/FormulaUTest.cpp.o
[ 60%] Linking CXX executable MultiSpaceUTest
[ 60%] Linking CXX executable UnifyUTest
[ 60%] Linking CXX executable ReductUTest
[ 60%] Built target MultiSpaceUTest
[ 61%] Generating MapLinkUTest.cpp
Scanning dependencies of target MapLinkUTest
[ 61%] Building CXX object tests/atoms/CMakeFiles/MapLinkUTest.dir/MapLinkUTest.cpp.o
[ 61%] Built target UnifyUTest
[ 61%] Built target ReductUTest
[ 61%] Generating GearmanUTest.cpp
[ 61%] Built target logger
[ 61%] Generating VectorAPIUTest.cpp
Scanning dependencies of target GearmanUTest
[ 61%] Building CXX object tests/persist/gearman/CMakeFiles/GearmanUTest.dir/GearmanUTest.cpp.o
Scanning dependencies of target VectorAPIUTest
[ 61%] Building CXX object tests/matrix/CMakeFiles/VectorAPIUTest.dir/VectorAPIUTest.cpp.o
[ 62%] Linking CXX executable AtomSpaceUTest
[ 62%] Built target AtomSpaceUTest
[ 62%] Generating NoExceptionUTest.cpp
Scanning dependencies of target NoExceptionUTest
[ 62%] Building CXX object tests/query/CMakeFiles/NoExceptionUTest.dir/NoExceptionUTest.cpp.o
[ 62%] Linking CXX executable RewriteLinkUTest
[ 62%] Built target RewriteLinkUTest
[ 62%] Generating SudokuUTest.cpp
Scanning dependencies of target SudokuUTest
[ 62%] Building CXX object tests/query/CMakeFiles/SudokuUTest.dir/SudokuUTest.cpp.o
[ 62%] Linking CXX executable QuotationUTest
[ 62%] Linking CXX executable FreeLinkUTest
[ 62%] Built target QuotationUTest
[ 62%] Built target FreeLinkUTest
[ 63%] Generating NestedPutUTest.cpp
[ 63%] Generating EvalLinkDefaultTVUTest.cpp
Scanning dependencies of target NestedPutUTest
Scanning dependencies of target EvalLinkDefaultTVUTest
[ 63%] Building CXX object tests/query/CMakeFiles/NestedPutUTest.dir/NestedPutUTest.cpp.o
[ 63%] Building CXX object tests/query/CMakeFiles/EvalLinkDefaultTVUTest.dir/EvalLinkDefaultTVUTest.cpp.o
[ 64%] Linking CXX executable GearmanUTest
[ 64%] Linking CXX executable FormulaUTest
[ 64%] Built target GearmanUTest
[ 64%] Linking CXX executable MapLinkUTest
[ 64%] Built target FormulaUTest
[ 64%] Linking CXX executable NoExceptionUTest
[ 64%] Generating ConstantClausesUTest.cpp
[ 64%] Generating UnorderedUTest.cpp
Scanning dependencies of target ConstantClausesUTest
Scanning dependencies of target UnorderedUTest
[ 64%] Building CXX object tests/query/CMakeFiles/ConstantClausesUTest.dir/ConstantClausesUTest.cpp.o
[ 65%] Building CXX object tests/query/CMakeFiles/UnorderedUTest.dir/UnorderedUTest.cpp.o
[ 65%] Built target MapLinkUTest
[ 65%] Generating VarTypeNotUTest.cpp
[ 65%] Built target NoExceptionUTest
[ 65%] Generating BindTVUTest.cpp
Scanning dependencies of target VarTypeNotUTest
[ 65%] Building CXX object tests/query/CMakeFiles/VarTypeNotUTest.dir/VarTypeNotUTest.cpp.o
Scanning dependencies of target BindTVUTest
[ 65%] Building CXX object tests/query/CMakeFiles/BindTVUTest.dir/BindTVUTest.cpp.o
[ 65%] Linking CXX executable SudokuUTest
[ 65%] Built target SudokuUTest
[ 67%] Generating ExecutionOutputUTest.cpp
Scanning dependencies of target ExecutionOutputUTest
[ 67%] Building CXX object tests/query/CMakeFiles/ExecutionOutputUTest.dir/ExecutionOutputUTest.cpp.o
[ 67%] Linking CXX executable NestedPutUTest
[ 67%] Linking CXX executable EvalLinkDefaultTVUTest
[ 67%] Built target NestedPutUTest
[ 68%] Generating ScopeUTest.cpp
[ 68%] Built target EvalLinkDefaultTVUTest
Scanning dependencies of target ScopeUTest
[ 68%] Generating StackUTest.cpp
[ 68%] Building CXX object tests/query/CMakeFiles/ScopeUTest.dir/ScopeUTest.cpp.o
Scanning dependencies of target StackUTest
[ 68%] Building CXX object tests/query/CMakeFiles/StackUTest.dir/StackUTest.cpp.o
[ 68%] Linking CXX executable UnorderedUTest
[ 68%] Linking CXX executable VarTypeNotUTest
[ 68%] Built target UnorderedUTest
[ 68%] Linking CXX executable BindTVUTest
[ 68%] Generating FiniteStateMachineUTest.cpp
[ 68%] Built target BindTVUTest
[ 68%] Built target VarTypeNotUTest
Scanning dependencies of target FiniteStateMachineUTest
[ 68%] Building CXX object tests/query/CMakeFiles/FiniteStateMachineUTest.dir/FiniteStateMachineUTest.cpp.o
[ 68%] Linking CXX executable ConstantClausesUTest
[ 68%] Generating BigPatternUTest.cpp
[ 68%] Generating ImplicationUTest.cpp
Scanning dependencies of target BigPatternUTest
Scanning dependencies of target ImplicationUTest
[ 68%] Building CXX object tests/query/CMakeFiles/BigPatternUTest.dir/BigPatternUTest.cpp.o
[ 69%] Building CXX object tests/query/CMakeFiles/ImplicationUTest.dir/ImplicationUTest.cpp.o
[ 69%] Built target ConstantClausesUTest
[ 70%] Generating BuggyLinkUTest.cpp
Scanning dependencies of target BuggyLinkUTest
[ 70%] Building CXX object tests/query/CMakeFiles/BuggyLinkUTest.dir/BuggyLinkUTest.cpp.o
[ 70%] Linking CXX executable VectorAPIUTest
[ 70%] Linking CXX executable StackUTest
[ 70%] Built target VectorAPIUTest
[ 70%] Built target StackUTest
[ 70%] Linking CXX executable ScopeUTest
[ 70%] Linking CXX executable ExecutionOutputUTest
[ 70%] Generating QueryUTest.cpp
[ 70%] Generating NotLinkUTest.cpp
Scanning dependencies of target NotLinkUTest
Scanning dependencies of target QueryUTest
[ 70%] Building CXX object tests/query/CMakeFiles/NotLinkUTest.dir/NotLinkUTest.cpp.o
[ 70%] Building CXX object tests/query/CMakeFiles/QueryUTest.dir/QueryUTest.cpp.o
[ 70%] Built target ScopeUTest
[ 70%] Generating LoopPatternUTest.cpp
[ 70%] Built target ExecutionOutputUTest
[ 70%] Generating GreaterComputeUTest.cpp
Scanning dependencies of target LoopPatternUTest
[ 70%] Building CXX object tests/query/CMakeFiles/LoopPatternUTest.dir/LoopPatternUTest.cpp.o
Scanning dependencies of target GreaterComputeUTest
[ 70%] Building CXX object tests/query/CMakeFiles/GreaterComputeUTest.dir/GreaterComputeUTest.cpp.o
[ 70%] Linking CXX executable FiniteStateMachineUTest
[ 70%] Built target FiniteStateMachineUTest
[ 70%] Generating PatternUTest.cpp
Scanning dependencies of target PatternUTest
[ 70%] Building CXX object tests/query/CMakeFiles/PatternUTest.dir/PatternUTest.cpp.o
[ 70%] Linking CXX executable BuggyLinkUTest
[ 70%] Built target BuggyLinkUTest
[ 70%] Linking CXX executable BigPatternUTest
[ 70%] Generating BooleanUTest.cpp
[ 70%] Built target BigPatternUTest
Scanning dependencies of target BooleanUTest
[ 70%] Building CXX object tests/query/CMakeFiles/BooleanUTest.dir/BooleanUTest.cpp.o
[ 70%] Generating BuggyNotUTest.cpp
[ 70%] Linking CXX executable ImplicationUTest
Scanning dependencies of target BuggyNotUTest
[ 70%] Building CXX object tests/query/CMakeFiles/BuggyNotUTest.dir/BuggyNotUTest.cpp.o
[ 70%] Built target ImplicationUTest
[ 70%] Generating DisconnectedUTest.cpp
Scanning dependencies of target DisconnectedUTest
[ 70%] Building CXX object tests/query/CMakeFiles/DisconnectedUTest.dir/DisconnectedUTest.cpp.o
[ 70%] Linking CXX executable GreaterComputeUTest
[ 70%] Linking CXX executable QueryUTest
[ 70%] Built target GreaterComputeUTest
[ 70%] Generating DeepTypeUTest.cpp
[ 71%] Linking CXX executable NotLinkUTest
Scanning dependencies of target DeepTypeUTest
[ 71%] Building CXX object tests/query/CMakeFiles/DeepTypeUTest.dir/DeepTypeUTest.cpp.o
[ 71%] Built target QueryUTest
[ 71%] Generating EinsteinUTest.cpp
Scanning dependencies of target EinsteinUTest
[ 71%] Building CXX object tests/query/CMakeFiles/EinsteinUTest.dir/EinsteinUTest.cpp.o
[ 71%] Built target NotLinkUTest
[ 71%] Generating MatchLinkUTest.cpp
Scanning dependencies of target MatchLinkUTest
[ 71%] Building CXX object tests/query/CMakeFiles/MatchLinkUTest.dir/MatchLinkUTest.cpp.o
[ 71%] Linking CXX executable LoopPatternUTest
[ 71%] Built target LoopPatternUTest
[ 71%] Generating BiggerPatternUTest.cpp
Scanning dependencies of target BiggerPatternUTest
[ 72%] Building CXX object tests/query/CMakeFiles/BiggerPatternUTest.dir/BiggerPatternUTest.cpp.o
[ 72%] Linking CXX executable PatternUTest
[ 72%] Linking CXX executable BuggyNotUTest
[ 72%] Built target BuggyNotUTest
[ 72%] Built target PatternUTest
[ 73%] Generating BuggyStackUTest.cpp
[ 73%] Generating RecognizerUTest.cpp
Scanning dependencies of target RecognizerUTest
Scanning dependencies of target BuggyStackUTest
[ 73%] Building CXX object tests/query/CMakeFiles/RecognizerUTest.dir/RecognizerUTest.cpp.o
[ 73%] Building CXX object tests/query/CMakeFiles/BuggyStackUTest.dir/BuggyStackUTest.cpp.o
[ 73%] Linking CXX executable DisconnectedUTest
[ 73%] Built target DisconnectedUTest
[ 73%] Linking CXX executable BooleanUTest
[ 73%] Generating GetStateUTest.cpp
[ 73%] Linking CXX executable DeepTypeUTest
[ 73%] Linking CXX executable MatchLinkUTest
[ 73%] Linking CXX executable EinsteinUTest
Scanning dependencies of target GetStateUTest
[ 73%] Building CXX object tests/query/CMakeFiles/GetStateUTest.dir/GetStateUTest.cpp.o
[ 73%] Linking CXX executable BiggerPatternUTest
[ 73%] Built target BooleanUTest
[ 73%] Generating UnquoteUTest.cpp
Scanning dependencies of target UnquoteUTest
[ 73%] Building CXX object tests/query/CMakeFiles/UnquoteUTest.dir/UnquoteUTest.cpp.o
[ 73%] Built target DeepTypeUTest
[ 73%] Generating StackMoreUTest.cpp
[ 73%] Built target MatchLinkUTest
[ 73%] Generating DefineUTest.cpp
[ 73%] Built target EinsteinUTest
[ 73%] Generating ArcanaUTest.cpp
[ 73%] Built target BiggerPatternUTest
Scanning dependencies of target StackMoreUTest
[ 73%] Generating SubstitutionUTest.cpp
[ 73%] Building CXX object tests/query/CMakeFiles/StackMoreUTest.dir/StackMoreUTest.cpp.o
Scanning dependencies of target DefineUTest
[ 73%] Building CXX object tests/query/CMakeFiles/DefineUTest.dir/DefineUTest.cpp.o
Scanning dependencies of target ArcanaUTest
Scanning dependencies of target SubstitutionUTest
[ 73%] Building CXX object tests/query/CMakeFiles/ArcanaUTest.dir/ArcanaUTest.cpp.o
[ 73%] Building CXX object tests/query/CMakeFiles/SubstitutionUTest.dir/SubstitutionUTest.cpp.o
[ 73%] Linking CXX executable RecognizerUTest
[ 73%] Linking CXX executable BuggyStackUTest
[ 73%] Built target RecognizerUTest
[ 73%] Built target BuggyStackUTest
[ 73%] Generating GetLinkUTest.cpp
[ 73%] Generating GreaterThanUTest.cpp
Scanning dependencies of target GetLinkUTest
Scanning dependencies of target GreaterThanUTest
[ 73%] Building CXX object tests/query/CMakeFiles/GetLinkUTest.dir/GetLinkUTest.cpp.o
[ 73%] Building CXX object tests/query/CMakeFiles/GreaterThanUTest.dir/GreaterThanUTest.cpp.o
[ 74%] Linking CXX executable GetStateUTest
[ 74%] Linking CXX executable DefineUTest
[ 74%] Linking CXX executable UnquoteUTest
[ 74%] Built target GetStateUTest
[ 75%] Generating Boolean2NotUTest.cpp
[ 76%] Linking CXX executable SubstitutionUTest
[ 76%] Built target DefineUTest
[ 76%] Generating SequenceUTest.cpp
Scanning dependencies of target Boolean2NotUTest
[ 76%] Building CXX object tests/query/CMakeFiles/Boolean2NotUTest.dir/Boolean2NotUTest.cpp.o
[ 78%] Linking CXX executable ArcanaUTest
[ 79%] Linking CXX executable StackMoreUTest
[ 79%] Built target UnquoteUTest
Scanning dependencies of target SequenceUTest
[ 80%] Generating EvaluationUTest.cpp
[ 80%] Building CXX object tests/query/CMakeFiles/SequenceUTest.dir/SequenceUTest.cpp.o
[ 80%] Built target SubstitutionUTest
[ 80%] Generating DontExecUTest.cpp
Scanning dependencies of target EvaluationUTest
[ 80%] Building CXX object tests/query/CMakeFiles/EvaluationUTest.dir/EvaluationUTest.cpp.o
[ 80%] Built target ArcanaUTest
[ 80%] Generating TypeChoiceUTest.cpp
Scanning dependencies of target DontExecUTest
[ 80%] Built target StackMoreUTest
[ 81%] Building CXX object tests/query/CMakeFiles/DontExecUTest.dir/DontExecUTest.cpp.o
[ 81%] Generating GlobUTest.cpp
Scanning dependencies of target TypeChoiceUTest
[ 81%] Building CXX object tests/query/CMakeFiles/TypeChoiceUTest.dir/TypeChoiceUTest.cpp.o
Scanning dependencies of target GlobUTest
[ 81%] Building CXX object tests/query/CMakeFiles/GlobUTest.dir/GlobUTest.cpp.o
[ 82%] Linking CXX executable GreaterThanUTest
[ 82%] Built target GreaterThanUTest
[ 83%] Generating BuggyQuoteUTest.cpp
Scanning dependencies of target BuggyQuoteUTest
[ 83%] Building CXX object tests/query/CMakeFiles/BuggyQuoteUTest.dir/BuggyQuoteUTest.cpp.o
[ 83%] Linking CXX executable GetLinkUTest
[ 83%] Built target GetLinkUTest
[ 83%] Generating PatternCrashUTest.cpp
Scanning dependencies of target PatternCrashUTest
[ 83%] Building CXX object tests/query/CMakeFiles/PatternCrashUTest.dir/PatternCrashUTest.cpp.o
[ 83%] Linking CXX executable SequenceUTest
[ 83%] Linking CXX executable EvaluationUTest
[ 83%] Linking CXX executable DontExecUTest
[ 83%] Built target SequenceUTest
[ 83%] Built target EvaluationUTest
[ 83%] Linking CXX executable TypeChoiceUTest
[ 83%] Built target DontExecUTest
[ 83%] Generating AbsentUTest.cpp
[ 83%] Built target TypeChoiceUTest
[ 83%] Linking CXX executable GlobUTest
Scanning dependencies of target AbsentUTest
[ 83%] Generating QuoteUTest.cpp
[ 83%] Building CXX object tests/query/CMakeFiles/AbsentUTest.dir/AbsentUTest.cpp.o
[ 83%] Generating LocalQuoteUTest.cpp
[ 83%] Generating BuggyEqualUTest.cpp
[ 83%] Built target GlobUTest
[ 84%] Linking CXX executable PatternCrashUTest
Scanning dependencies of target QuoteUTest
[ 84%] Building CXX object tests/query/CMakeFiles/QuoteUTest.dir/QuoteUTest.cpp.o
Scanning dependencies of target LocalQuoteUTest
[ 85%] Building CXX object tests/query/CMakeFiles/LocalQuoteUTest.dir/LocalQuoteUTest.cpp.o
Scanning dependencies of target BuggyEqualUTest
[ 85%] Building CXX object tests/query/CMakeFiles/BuggyEqualUTest.dir/BuggyEqualUTest.cpp.o
[ 85%] Linking CXX executable BuggyQuoteUTest
[ 85%] Built target PatternCrashUTest
[ 85%] Generating BuggySelfGroundUTest.cpp
[ 85%] Linking CXX executable Boolean2NotUTest
[ 86%] Generating BuggyBindLinkUTest.cpp
Scanning dependencies of target BuggySelfGroundUTest
[ 86%] Built target BuggyQuoteUTest
[ 86%] Building CXX object tests/query/CMakeFiles/BuggySelfGroundUTest.dir/BuggySelfGroundUTest.cpp.o
[ 86%] Generating ChoiceLinkUTest.cpp
Scanning dependencies of target BuggyBindLinkUTest
[ 86%] Building CXX object tests/query/CMakeFiles/BuggyBindLinkUTest.dir/BuggyBindLinkUTest.cpp.o
Scanning dependencies of target ChoiceLinkUTest
[ 86%] Building CXX object tests/query/CMakeFiles/ChoiceLinkUTest.dir/ChoiceLinkUTest.cpp.o
[ 86%] Built target Boolean2NotUTest
[ 86%] Generating ActionSelectionUTest.cpp
Scanning dependencies of target ActionSelectionUTest
[ 86%] Building CXX object tests/ure/CMakeFiles/ActionSelectionUTest.dir/ActionSelectionUTest.cpp.o
[ 86%] Linking CXX executable BuggyEqualUTest
[ 86%] Built target BuggyEqualUTest
[ 86%] Generating BetaDistributionUTest.cpp
Scanning dependencies of target BetaDistributionUTest
[ 86%] Building CXX object tests/ure/CMakeFiles/BetaDistributionUTest.dir/BetaDistributionUTest.cpp.o
[ 86%] Linking CXX executable AbsentUTest
[ 86%] Linking CXX executable BuggySelfGroundUTest
[ 86%] Linking CXX executable QuoteUTest
[ 86%] Linking CXX executable BuggyBindLinkUTest
[ 87%] Linking CXX executable ChoiceLinkUTest
[ 87%] Linking CXX executable LocalQuoteUTest
[ 89%] Linking CXX executable ActionSelectionUTest
[ 89%] Built target AbsentUTest
[ 89%] Built target BuggySelfGroundUTest
[ 89%] Built target QuoteUTest
[ 89%] Generating RuleUTest.cpp
[ 89%] Generating UREConfigUTest.cpp
[ 89%] Generating ForwardChainerUTest.cpp
[ 89%] Built target BuggyBindLinkUTest
[ 89%] Generating ControlPolicyUTest.cpp
[ 89%] Built target ChoiceLinkUTest
[ 89%] Built target LocalQuoteUTest
[ 89%] Generating GradientUTest.cpp
Scanning dependencies of target UREConfigUTest
Scanning dependencies of target ForwardChainerUTest
[ 89%] Generating BITUTest.cpp
Scanning dependencies of target RuleUTest
[ 89%] Building CXX object tests/ure/forwardchainer/CMakeFiles/ForwardChainerUTest.dir/ForwardChainerUTest.cpp.o
[ 89%] Built target ActionSelectionUTest
[ 90%] Building CXX object tests/ure/CMakeFiles/UREConfigUTest.dir/UREConfigUTest.cpp.o
[ 90%] Building CXX object tests/ure/CMakeFiles/RuleUTest.dir/RuleUTest.cpp.o
Scanning dependencies of target ControlPolicyUTest
[ 90%] Generating BackwardChainerUTest.cpp
[ 90%] Building CXX object tests/ure/backwardchainer/CMakeFiles/ControlPolicyUTest.dir/ControlPolicyUTest.cpp.o
Scanning dependencies of target GradientUTest
[ 90%] Building CXX object tests/ure/backwardchainer/CMakeFiles/GradientUTest.dir/GradientUTest.cpp.o
Scanning dependencies of target BITUTest
[ 91%] Building CXX object tests/ure/backwardchainer/CMakeFiles/BITUTest.dir/BITUTest.cpp.o
Scanning dependencies of target BackwardChainerUTest
[ 91%] Building CXX object tests/ure/backwardchainer/CMakeFiles/BackwardChainerUTest.dir/BackwardChainerUTest.cpp.o
[ 91%] Linking CXX executable BetaDistributionUTest
[ 91%] Built target BetaDistributionUTest
[ 91%] Built target ure_cython
[ 92%] Generating MultiAtomSpaceUTest.cpp
Scanning dependencies of target MultiAtomSpaceUTest
[ 92%] Building CXX object tests/scm/CMakeFiles/MultiAtomSpaceUTest.dir/MultiAtomSpaceUTest.cpp.o
[ 92%] Linking CXX executable UREConfigUTest
[ 92%] Built target UREConfigUTest
[ 93%] Generating MultiThreadUTest.cpp
Scanning dependencies of target MultiThreadUTest
[ 93%] Building CXX object tests/scm/CMakeFiles/MultiThreadUTest.dir/MultiThreadUTest.cpp.o
[ 94%] Linking CXX executable GradientUTest
[ 95%] Linking CXX executable ControlPolicyUTest
[ 95%] Built target GradientUTest
[ 95%] Linking CXX executable ForwardChainerUTest
[ 95%] Generating SCMPrimitiveUTest.cpp
Scanning dependencies of target SCMPrimitiveUTest
[ 95%] Building CXX object tests/scm/CMakeFiles/SCMPrimitiveUTest.dir/SCMPrimitiveUTest.cpp.o
[ 95%] Built target ControlPolicyUTest
[ 95%] Built target ForwardChainerUTest
[ 96%] Generating SCMUtilsUTest.cpp
[ 96%] Generating BasicSCMUTest.cpp
[ 96%] Linking CXX executable BITUTest
Scanning dependencies of target SCMUtilsUTest
[ 96%] Building CXX object tests/scm/CMakeFiles/SCMUtilsUTest.dir/SCMUtilsUTest.cpp.o
[ 96%] Built target BITUTest
Scanning dependencies of target BasicSCMUTest
[ 97%] Building CXX object tests/scm/CMakeFiles/BasicSCMUTest.dir/BasicSCMUTest.cpp.o
[ 98%] Generating SCMExecutionOutputUTest.cpp
Scanning dependencies of target SCMExecutionOutputUTest
[ 98%] Building CXX object tests/scm/CMakeFiles/SCMExecutionOutputUTest.dir/SCMExecutionOutputUTest.cpp.o
[ 98%] Linking CXX executable RuleUTest
[ 98%] Built target RuleUTest
[ 98%] Generating PythonUtilitiesUTest.cpp
[ 98%] Linking CXX executable BackwardChainerUTest
Scanning dependencies of target PythonUtilitiesUTest
[100%] Building CXX object tests/cython/CMakeFiles/PythonUtilitiesUTest.dir/PythonUtilitiesUTest.cpp.o
[100%] Built target BackwardChainerUTest
[100%] Linking CXX executable MultiThreadUTest
[100%] Linking CXX executable MultiAtomSpaceUTest
[100%] Built target MultiThreadUTest
[100%] Built target MultiAtomSpaceUTest
[100%] Linking CXX executable SCMUtilsUTest
[100%] Built target SCMUtilsUTest
[100%] Linking CXX executable SCMPrimitiveUTest
[100%] Built target SCMPrimitiveUTest
[100%] Linking CXX executable PythonUtilitiesUTest
[100%] Built target PythonUtilitiesUTest
[100%] Linking CXX executable SCMExecutionOutputUTest
[100%] Built target SCMExecutionOutputUTest
[100%] Linking CXX executable BasicSCMUTest
[100%] Built target BasicSCMUTest
Scanning dependencies of target tests
[100%] Built target tests
Scanning dependencies of target test
[100%] Running tests...
Test project /home/opencog/atomspace/build/tests
Start 1: AtomTableUTest
1/131 Test #1: AtomTableUTest ................... Passed 6.60 sec
Start 2: AtomUTest
2/131 Test #2: AtomUTest ........................ Passed 0.00 sec
Start 3: NodeUTest
3/131 Test #3: NodeUTest ........................ Passed 0.00 sec
Start 4: LinkUTest
4/131 Test #4: LinkUTest ........................ Passed 0.00 sec
Start 5: TLBUTest
5/131 Test #5: TLBUTest ......................... Passed 0.00 sec
Start 6: HashMixUTest
6/131 Test #6: HashMixUTest ..................... Passed 1.73 sec
Start 7: AtomSpaceUTest
7/131 Test #7: AtomSpaceUTest ................... Passed 0.02 sec
Start 8: AtomSpaceAsyncUTest
8/131 Test #8: AtomSpaceAsyncUTest .............. Passed 7.59 sec
Start 9: UseCountUTest
9/131 Test #9: UseCountUTest .................... Passed 7.24 sec
Start 10: MultiSpaceUTest
10/131 Test #10: MultiSpaceUTest .................. Passed 0.01 sec
Start 11: COWSpaceUTest
11/131 Test #11: COWSpaceUTest .................... Passed 0.01 sec
Start 12: RemoveUTest
12/131 Test #12: RemoveUTest ...................... Passed 0.03 sec
Start 13: HashUTest
13/131 Test #13: HashUTest ........................ Passed 1.12 sec
Start 14: FreeLinkUTest
14/131 Test #14: FreeLinkUTest .................... Passed 0.03 sec
Start 15: MapLinkUTest
15/131 Test #15: MapLinkUTest ..................... Passed 1.65 sec
Start 16: ParallelUTest
16/131 Test #16: ParallelUTest .................... Passed 11.50 sec
Start 17: RandomUTest
17/131 Test #17: RandomUTest ...................... Passed 0.61 sec
Start 18: ReductUTest
18/131 Test #18: ReductUTest ...................... Passed 0.04 sec
Start 19: RewriteLinkUTest
19/131 Test #19: RewriteLinkUTest ................. Passed 0.19 sec
Start 20: ScopeLinkUTest
20/131 Test #20: ScopeLinkUTest ................... Passed 0.04 sec
Start 21: PutLinkUTest
21/131 Test #21: PutLinkUTest ..................... Passed 0.97 sec
Start 22: QuotationUTest
22/131 Test #22: QuotationUTest ................... Passed 0.06 sec
Start 23: FormulaUTest
23/131 Test #23: FormulaUTest ..................... Passed 0.25 sec
Start 24: AlphaConvertUTest
24/131 Test #24: AlphaConvertUTest ................ Passed 0.01 sec
Start 25: BetaReduceUTest
25/131 Test #25: BetaReduceUTest .................. Passed 0.02 sec
Start 26: DefineLinkUTest
26/131 Test #26: DefineLinkUTest .................. Passed 0.11 sec
Start 27: DeleteLinkUTest
27/131 Test #27: DeleteLinkUTest .................. Passed 0.02 sec
Start 28: EqualLinkUTest
28/131 Test #28: EqualLinkUTest ................... Passed 0.03 sec
Start 29: GroundedSchemaLocalUTest
29/131 Test #29: GroundedSchemaLocalUTest ......... Passed 0.01 sec
Start 30: StateLinkUTest
30/131 Test #30: StateLinkUTest ................... Passed 0.01 sec
Start 31: VariablesUTest
31/131 Test #31: VariablesUTest ................... Passed 0.00 sec
Start 32: ExistsLinkUTest
32/131 Test #32: ExistsLinkUTest .................. Passed 0.01 sec
Start 33: ValueOfUTest
33/131 Test #33: ValueOfUTest ..................... Passed 0.00 sec
Start 34: StreamUTest
34/131 Test #34: StreamUTest ...................... Passed 0.10 sec
Start 35: IdenticalLinkUTest
35/131 Test #35: IdenticalLinkUTest ............... Passed 0.01 sec
Start 36: NameServerUTest
36/131 Test #36: NameServerUTest .................. Passed 0.00 sec
Start 37: ClassServerUTest
37/131 Test #37: ClassServerUTest ................. Passed 0.00 sec
Start 38: HandleUTest
38/131 Test #38: HandleUTest ...................... Passed 0.00 sec
Start 39: CheckersUTest
39/131 Test #39: CheckersUTest .................... Passed 0.15 sec
Start 40: CondLinkUTest
40/131 Test #40: CondLinkUTest .................... Passed 0.15 sec
Start 41: FindUtilsUTest
41/131 Test #41: FindUtilsUTest ................... Passed 0.00 sec
Start 42: SimpleTruthValueUTest
42/131 Test #42: SimpleTruthValueUTest ............ Passed 0.01 sec
Start 43: TVUTest
43/131 Test #43: TVUTest .......................... Passed 0.07 sec
Start 44: TVMergeUTest
44/131 Test #44: TVMergeUTest ..................... Passed 0.01 sec
Start 45: EvidenceCountTruthValueUTest
45/131 Test #45: EvidenceCountTruthValueUTest ..... Passed 0.01 sec
Start 46: ValueUTest
46/131 Test #46: ValueUTest ....................... Passed 0.00 sec
Start 47: UnifyUTest
47/131 Test #47: UnifyUTest ....................... Passed 8.28 sec
Start 48: AtomSpaceUtilsUTest
48/131 Test #48: AtomSpaceUtilsUTest .............. Passed 0.00 sec
Start 49: GearmanUTest
49/131 Test #49: GearmanUTest ..................... Passed 2.10 sec
Start 50: BasicSCMUTest
50/131 Test #50: BasicSCMUTest .................... Passed 0.85 sec
Start 51: SCMPrimitiveUTest
51/131 Test #51: SCMPrimitiveUTest ................ Passed 0.31 sec
Start 52: MultiAtomSpaceUTest
52/131 Test #52: MultiAtomSpaceUTest .............. Passed 2.55 sec
Start 53: MultiThreadUTest
53/131 Test #53: MultiThreadUTest ................. Passed 3.98 sec
Start 54: SCMUtilsUTest
54/131 Test #54: SCMUtilsUTest .................... Passed 0.21 sec
Start 55: SCMExecutionOutputUTest
55/131 Test #55: SCMExecutionOutputUTest .......... Passed 0.12 sec
Start 56: SCMOpencogTestRunnerPass
56/131 Test #56: SCMOpencogTestRunnerPass ......... Passed 0.21 sec
Start 57: SCMOpencogTestRunnerFail
57/131 Test #57: SCMOpencogTestRunnerFail ......... Passed 0.09 sec
Start 58: SCMPython
58/131 Test #58: SCMPython ........................ Passed 0.15 sec
Start 59: SCMPythonSharedAtomspace
59/131 Test #59: SCMPythonSharedAtomspace ......... Passed 0.15 sec
Start 60: SCMPythonArity
60/131 Test #60: SCMPythonArity ................... Passed 0.51 sec
Start 61: VectorAPIUTest
61/131 Test #61: VectorAPIUTest ...................***Failed 5.11 sec
Running cxxtest tests (6 tests);;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;; or pass the --no-auto-compile argument to disable.
;;; compiling ../../../tests/matrix/basic-api.scm
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/persist.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/persist.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/object-api.scm
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/exec.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/exec.scm.go
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/object-api.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/dynamic.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/dynamic.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/support.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/support.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/transpose.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/transpose.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/report-api.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/report-api.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/fold-api.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/fold-api.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/loop-api.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/loop-api.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/bin-count.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/bin-count.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/symmetric-mi.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/symmetric-mi.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/cosine.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/cosine.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/entropy.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/entropy.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/compute-mi.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/compute-mi.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/trans-batch.scm
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/trans-batch.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/filter.scm
;;; opencog/matrix/filter.scm:129:28: warning: possibly unbound variable `PAIR'
;;; compiled /home/jenkins/.cache/guile/ccache/2.2-LE-8-3.A/home/opencog/atomspace/build/opencog/scm/opencog/matrix/filter.scm.go
;;; compiling /home/opencog/atomspace/build/opencog/scm/opencog/matrix/similarity-api.scm
;;; compiled [2019-04-23 06:05:39:201] [DEBUG] BEGIN TEST: test_basic
Load of data >>>
Got >>>#t
Got >>>#t
[2019-04-23 06:05:39:241] [DEBUG] END TEST: test_basic
.[2019-04-23 06:05:39:244] [DEBUG] BEGIN TEST: test_marginals
Load of data >>>
[2019-04-23 06:05:39:280] [ERROR] Cannot connect to database: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
(/home/opencog/atomspace/opencog/persist/sql/multi-driver/ll-pg-cxx.cc:54)
Stack Trace:
2: Logger.cc:513 opencog::Logger::logva(opencog::Logger::Level, char const*, __va_list_tag*)
3: Logger.cc:525 opencog::Logger::Error::operator()(char const*, ...)
4: exceptions.cc:55 opencog::StandardException::parse_error_message(char const*, __va_list_tag*, bool)
5: exceptions.cc:82 opencog::StandardException::parse_error_message(char const*, char const*, __va_list_tag*, bool)
6: exceptions.cc:142 opencog::RuntimeException::RuntimeException(char const*, char const*, ...)
7: ll-pg-cxx.cc:55 LLPGConnection::LLPGConnection(char const*)
8: SQLAtomStorage.cc:106 opencog::SQLAtomStorage::init(char const*)
9: SQLAtomStorage.cc:164 opencog::SQLAtomStorage::SQLAtomStorage(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)
10: SQLPersistSCM.cc:99 opencog::SQLPersistSCM::do_open(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
11: SchemePrimitive.h:309 void opencog::SchemePrimitiveBase<void, opencog::SQLPersistSCM, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>::conv_call_method<0ul>(scm_unused_struct*, std::integer_sequence<unsigned long, 0ul>)
12: SchemePrimitive.cc:162 opencog::PrimitiveEnviron::do_call(scm_unused_struct*, scm_unused_struct*)
13: vm-engine.c:787 vm_regular_engine()
14: vm.c:1258 scm_call_n()
15: eval.c:502 scm_call_3()
16: vm-engine.c:787 vm_regular_engine()
17: vm.c:1258 scm_call_n()
18: throw.c:139 catch()
19: SchemeEval.cc:590 opencog::SchemeEval::do_eval(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
20: SchemeEval.cc:509 opencog::SchemeEval::c_wrap_eval(void*)
21: continuations.c:422 c_body()
22: vm-engine.c:787 vm_regular_engine()
23: vm.c:1258 scm_call_n()
24: throw.c:139 catch()
25: continuations.c:367 scm_i_with_continuation_barrier()
26: continuations.c:461 scm_c_with_continuation_barrier()
27: [0x21c97] ??() ??:0
28: threads.c:690 with_guile()
29: [0x1bc62] ??() ??:0
30: threads.c:711 scm_with_guile()
31: SchemeEval.cc:480 opencog::SchemeEval::eval_expr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
32: SchemeEval.h:161 opencog::SchemeEval::eval(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
33: basic_string.h:589 std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&)
34: RealDescriptions.cpp:125 CxxTest::RealTestDescription::run()
35: TestRunner.h:104 CxxTest::TestRunner::runTest(CxxTest::TestDescription&)
36: VectorAPIUTest.cpp:20 main()
37: [0x20830] ??() ??:0
38: [0x40c209] ??() ??:0
In VectorAPIUTest::test_marginals:
/home/opencog/atomspace/build/tests/matrix/../../../tests/matrix/VectorAPIUTest.cxxtest:180: Error: Test failed: Caught scm error during eval
/home/opencog/atomspace/build/tests/matrix/../../../tests/matrix/VectorAPIUTest.cxxtest:180: Error: Assertion failed: (false == eval->eval_error())
[2019-04-23 06:05:39:408] [ERROR] No backing store (/home/opencog/atomspace/opencog/atomspace/AtomSpace.cc:335)
Stack Trace:
2: Logger.cc:513 opencog::Logger::logva(opencog::Logger::Level, char const*, __va_list_tag*)
3: Logger.cc:525 opencog::Logger::Error::operator()(char const*, ...)
4: exceptions.cc:55 opencog::StandardException::parse_error_message(char const*, __va_list_tag*, bool)
5: exceptions.cc:82 opencog::StandardException::parse_error_message(char const*, char const*, __va_list_tag*, bool)
6: exceptions.cc:142 opencog::RuntimeException::RuntimeException(char const*, char const*, ...)
7: AtomSpace.cc:338 opencog::AtomSpace::store_atom(opencog::Handle const&)
8: shared_ptr_base.h:923 std::__shared_ptr<opencog::Atom, (__gnu_cxx::_Lock_policy)2>::__shared_ptr(std::__shared_ptr<opencog::Atom, (__gnu_cxx::_Lock_policy)2> const&)
9: shared_ptr_base.h:658 std::__shared_count<(__gnu_cxx::_Lock_policy)2>::~__shared_count()
10: SchemePrimitive.cc:162 opencog::PrimitiveEnviron::do_call(scm_unused_struct*, scm_unused_struct*)
11: vm-engine.c:787 vm_regular_engine()
12: vm.c:1258 scm_call_n()
13: eval.c:502 scm_call_3()
14: vm-engine.c:787 vm_regular_engine()
15: vm.c:1258 scm_call_n()
16: throw.c:139 catch()
17: SchemeEval.cc:590 opencog::SchemeEval::do_eval(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
18: SchemeEval.cc:509 opencog::SchemeEval::c_wrap_eval(void*)
19: continuations.c:422 c_body()
20: vm-engine.c:787 vm_regular_engine()
21: vm.c:1258 scm_call_n()
22: throw.c:139 catch()
23: continuations.c:367 scm_i_with_continuation_barrier()
24: continuations.c:461 scm_c_with_continuation_barrier()
25: [0x21c97] ??() ??:0
26: threads.c:690 with_guile()
27: [0x1bc62] ??() ??:0
28: threads.c:711 scm_with_guile()
29: SchemeEval.cc:480 opencog::SchemeEval::eval_expr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
30: SchemeEval.h:161 opencog::SchemeEval::eval(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)
31: basic_string.h:589 std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::operator=(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&)
32: RealDescriptions.cpp:125 CxxTest::RealTestDescription::run()
33: TestRunner.h:104 CxxTest::TestRunner::runTest(CxxTest::TestDescription&)
34: VectorAPIUTest.cpp:20 main()
35: [0x20830] ??() ??:0
36: [0x40c209] ??() ??:0
Batch >>>Start computing the basis
Support: found num left= 3 num right= 4 in 0 secs
Finished left norm marginals in 0 secs
Finished left totals in 0 secs