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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225 | # GOPATH=`cd ../../..; pwd` go test -v launchpad.net/ubuntu-push launchpad.net/ubuntu-push/accounts launchpad.net/ubuntu-push/bus launchpad.net/ubuntu-push/bus/accounts launchpad.net/ubuntu-push/bus/connectivity launchpad.net/ubuntu-push/bus/emblemcounter launchpad.net/ubuntu-push/bus/haptic launchpad.net/ubuntu-push/bus/networkmanager launchpad.net/ubuntu-push/bus/notifications launchpad.net/ubuntu-push/bus/polld launchpad.net/ubuntu-push/bus/powerd launchpad.net/ubuntu-push/bus/systemimage launchpad.net/ubuntu-push/bus/testing launchpad.net/ubuntu-push/bus/unitygreeter launchpad.net/ubuntu-push/bus/urfkill launchpad.net/ubuntu-push/bus/windowstack launchpad.net/ubuntu-push/click launchpad.net/ubuntu-push/click/cappinfo launchpad.net/ubuntu-push/click/cblacklist launchpad.net/ubuntu-push/click/cclick launchpad.net/ubuntu-push/click/testing launchpad.net/ubuntu-push/client launchpad.net/ubuntu-push/client/gethosts launchpad.net/ubuntu-push/client/service launchpad.net/ubuntu-push/client/session launchpad.net/ubuntu-push/client/session/seenstate launchpad.net/ubuntu-push/config launchpad.net/ubuntu-push/external/murmur3 launchpad.net/ubuntu-push/identifier launchpad.net/ubuntu-push/identifier/testing launchpad.net/ubuntu-push/launch_helper launchpad.net/ubuntu-push/launch_helper/cual launchpad.net/ubuntu-push/launch_helper/helper_finder launchpad.net/ubuntu-push/launch_helper/legacy launchpad.net/ubuntu-push/logger launchpad.net/ubuntu-push/messaging launchpad.net/ubuntu-push/messaging/cmessaging launchpad.net/ubuntu-push/messaging/reply launchpad.net/ubuntu-push/nih launchpad.net/ubuntu-push/nih/cnih launchpad.net/ubuntu-push/poller launchpad.net/ubuntu-push/protocol launchpad.net/ubuntu-push/server launchpad.net/ubuntu-push/server/api launchpad.net/ubuntu-push/server/broker launchpad.net/ubuntu-push/server/broker/simple launchpad.net/ubuntu-push/server/broker/testing launchpad.net/ubuntu-push/server/broker/testsuite launchpad.net/ubuntu-push/server/dev launchpad.net/ubuntu-push/server/listener launchpad.net/ubuntu-push/server/session launchpad.net/ubuntu-push/server/store launchpad.net/ubuntu-push/sounds launchpad.net/ubuntu-push/testing launchpad.net/ubuntu-push/testing/condition launchpad.net/ubuntu-push/urldispatcher launchpad.net/ubuntu-push/urldispatcher/curldispatcher launchpad.net/ubuntu-push/util
# launchpad.net/ubuntu-push/accounts
accounts/caccounts.go: In function 'cb':
accounts/caccounts.go:16:5: warning: implicit declaration of function 'gocb' [-Wimplicit-function-declaration]
gocb();
^
# launchpad.net/ubuntu-push/urldispatcher/curldispatcher
urldispatcher/curldispatcher/curldispatcher_c.go: In function 'url_dispatch_callback':
urldispatcher/curldispatcher/curldispatcher_c.go:27:5: warning: implicit declaration of function 'handleDispatchURLResult' [-Wimplicit-function-declaration]
handleDispatchURLResult(url, success, user_data);
^
# launchpad.net/ubuntu-push/launch_helper/cual
launch_helper/cual/cual_c.go: In function 'observer_of_stop':
launch_helper/cual/cual_c.go:28:5: warning: implicit declaration of function 'helperDone' [-Wimplicit-function-declaration]
helperDone (user_data, instance_id);
^
# launchpad.net/ubuntu-push/messaging/cmessaging
messaging/cmessaging/cmessaging_c.go: In function 'activate_cb':
messaging/cmessaging/cmessaging_c.go:25:5: warning: implicit declaration of function 'handleActivate' [-Wimplicit-function-declaration]
handleActivate(action, messaging_menu_message_get_id(msg), obj);
^
? launchpad.net/ubuntu-push [no test files]
? launchpad.net/ubuntu-push/accounts [no test files]
=== RUN TestBus
OK: 4 passed, 1 skipped
--- PASS: TestBus (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus 0.016s
=== RUN TestAcc
OK: 20 passed
--- PASS: TestAcc (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus/accounts 0.023s
=== RUN Test
OK: 14 passed
--- PASS: Test (1.14s)
PASS
ok launchpad.net/ubuntu-push/bus/connectivity 1.162s
libust[7937/7938]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7937/7938]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7937/7939]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7937/7939]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestEmblemCounter
OK: 4 passed
--- PASS: TestEmblemCounter (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus/emblemcounter 0.017s
libust[7989/7992]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7989/7992]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7989/7993]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[7989/7993]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestHaptic
OK: 6 passed
--- PASS: TestHaptic (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus/haptic 0.055s
=== RUN Test
OK: 30 passed
--- PASS: Test (0.13s)
PASS
ok launchpad.net/ubuntu-push/bus/networkmanager 0.150s
libust[8139/8141]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8139/8141]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8139/8140]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8139/8140]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestRaw
OK: 15 passed
--- PASS: TestRaw (0.51s)
PASS
ok launchpad.net/ubuntu-push/bus/notifications 0.529s
=== RUN TestPolld
OK: 5 passed
--- PASS: TestPolld (0.01s)
PASS
ok launchpad.net/ubuntu-push/bus/polld 0.052s
=== RUN TestPowerd
OK: 14 passed
--- PASS: TestPowerd (0.01s)
PASS
ok launchpad.net/ubuntu-push/bus/powerd 0.044s
=== RUN TestSystemImage
OK: 2 passed
--- PASS: TestSystemImage (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus/systemimage 0.010s
=== RUN Test
OK: 26 passed
--- PASS: Test (0.02s)
PASS
ok launchpad.net/ubuntu-push/bus/testing 0.033s
? launchpad.net/ubuntu-push/bus/unitygreeter [no test files]
=== RUN Test
OK: 18 passed
--- PASS: Test (0.08s)
PASS
ok launchpad.net/ubuntu-push/bus/urfkill 0.116s
=== RUN TestWindowStack
OK: 2 passed
--- PASS: TestWindowStack (0.00s)
PASS
ok launchpad.net/ubuntu-push/bus/windowstack 0.010s
=== RUN TestClick
OK: 14 passed, 1 skipped
--- PASS: TestClick (0.00s)
PASS
ok launchpad.net/ubuntu-push/click 0.009s
? launchpad.net/ubuntu-push/click/cappinfo [no test files]
? launchpad.net/ubuntu-push/click/cblacklist [no test files]
? launchpad.net/ubuntu-push/click/cclick [no test files]
? launchpad.net/ubuntu-push/click/testing [no test files]
libust[8418/8419]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8418/8420]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8418/8419]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8418/8420]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestClient
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.218349 client.go:259: DEBUG getting authorization for xyzzy://
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.257802 client.go:259: DEBUG getting authorization for xyzzy://
2015/10/16 12:18:28.260638 client.go:269: ERROR unable to get the authorization token from the account: fork/exec /no/such/executable: no such file or directory
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.266574 client.go:259: DEBUG getting authorization for xyzzy://
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.352794 connectivity.go:228: DEBUG sending initial 'disconnected'.
2015/10/16 12:18:28.352803 systemimage.go:60: DEBUG invoking Info
2015/10/16 12:18:28.352944 connectivity.go:124: DEBUG got initial state of Connecting
2015/10/16 12:18:28.352984 connectivity.go:133: DEBUG primary connection starts as "hello"
2015/10/16 12:18:28.353011 networkmanager.go:105: DEBUG got state: Connected Global
2015/10/16 12:18:28.353024 connectivity.go:183: DEBUG state changed to Connected Global. Assuming disconnect.
2015/10/16 12:18:28.353039 connectivity.go:189: DEBUG connectivity: Connecting -> Connected Global. lastSent: false, Ignoring.
2015/10/16 12:18:28.353062 connectivity.go:197: DEBUG connectivity: timer signal, state: ConnectedGlobal, checking...
2015/10/16 12:18:28.353561 webchecker.go:87: INFO connectivity check passed.
2015/10/16 12:18:28.353590 connectivity.go:209: DEBUG connectivity: connection check says: true
2015/10/16 12:18:28.353602 connectivity.go:212: DEBUG connectivity: connection check ok, lastSent: false, sending 'connected'.
2015/10/16 12:18:28.353667 connectivity.go:164: DEBUG connectivity: PrimaryConnection changed. lastSent: true, sending 'disconnected'.
2015/10/16 12:18:28.353679 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353688 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353697 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353708 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353717 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353749 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353760 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353767 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353775 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.353784 connectivity.go:246: ERROR got not-OK from StateChanged watch
2015/10/16 12:18:28.353790 connectivity.go:228: DEBUG sending initial 'disconnected'.
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.543229 client.go:259: DEBUG getting authorization for xyzzy://
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.576909 client.go:259: DEBUG getting authorization for xyzzy://
2015/10/16 12:18:28.578020 client.go:269: ERROR unable to get the authorization token from the account: fork/exec /no/such/executable: no such file or directory
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.605654 client.go:259: DEBUG getting authorization for xyzzy://
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): accounts-glib-WARNING **: Failed to get D-Bus connection (Failed to execute child process "dbus-launch" (No such file or directory))
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
(process:8418): GLib-GObject-WARNING **: invalid (NULL) pointer instance
(process:8418): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
2015/10/16 12:18:28.661602 connectivity.go:228: DEBUG sending initial 'disconnected'.
2015/10/16 12:18:28.661620 systemimage.go:60: DEBUG invoking Info
2015/10/16 12:18:28.661828 connectivity.go:124: DEBUG got initial state of Connecting
2015/10/16 12:18:28.661851 connectivity.go:133: DEBUG primary connection starts as "hello"
2015/10/16 12:18:28.661876 networkmanager.go:105: DEBUG got state: Connected Global
2015/10/16 12:18:28.661888 connectivity.go:183: DEBUG state changed to Connected Global. Assuming disconnect.
2015/10/16 12:18:28.661898 connectivity.go:189: DEBUG connectivity: Connecting -> Connected Global. lastSent: false, Ignoring.
2015/10/16 12:18:28.661925 connectivity.go:197: DEBUG connectivity: timer signal, state: ConnectedGlobal, checking...
2015/10/16 12:18:28.662921 webchecker.go:87: INFO connectivity check passed.
2015/10/16 12:18:28.662957 connectivity.go:209: DEBUG connectivity: connection check says: true
2015/10/16 12:18:28.662970 connectivity.go:212: DEBUG connectivity: connection check ok, lastSent: false, sending 'connected'.
2015/10/16 12:18:28.663079 connectivity.go:164: DEBUG connectivity: PrimaryConnection changed. lastSent: true, sending 'disconnected'.
2015/10/16 12:18:28.663099 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.663109 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.663116 connectivity.go:197: DEBUG connectivity: timer signal, state: ConnectedGlobal, checking...
2015/10/16 12:18:28.663129 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.663138 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.663146 connectivity.go:168: DEBUG connectivity: PrimaryConnection changed. lastSent: false, Ignoring.
2015/10/16 12:18:28.663159 connectivity.go:246: ERROR got not-OK from StateChanged watch
2015/10/16 12:18:28.663168 connectivity.go:228: DEBUG sending initial 'disconnected'.
2015/10/16 12:18:28.666032 webchecker.go:69: ERROR while GETting http://127.0.0.1:37993: Get http://127.0.0.1:37993: dial tcp 127.0.0.1:37993: getsockopt: connection refused
OK: 108 passed, 2 skipped
--- PASS: TestClient (0.63s)
PASS
ok launchpad.net/ubuntu-push/client 0.648s
=== RUN TestGetHosts
OK: 4 passed
--- PASS: TestGetHosts (0.70s)
PASS
ok launchpad.net/ubuntu-push/client/gethosts 0.711s
libust[8554/8555]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8554/8555]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8554/8556]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8554/8556]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestService
** (process:8554): WARNING **: could not find the desktop file for 'com.example.app_app_1.0.desktop'
** (process:8554): WARNING **: unable to connect to session bus: Failed to execute child process "dbus-launch" (No such file or directory)
----------------------------------------------------------------------
FAIL: <autogenerated>:78: ualPostalSuite.TestHandleActionsDispatches
[LOG] 0:00.000 DEBUG GetAll got: map[string]dbus.Variant{"IncomingMessageVibrate":dbus.Variant{Value:true}}
[LOG] 0:00.000 ERROR SilentMode needed a bool.
[LOG] 0:00.000 ERROR IncomingMessageVibrateSilentMode needed a bool.
[LOG] 0:00.000 ERROR IncomingMessageSound needed a string.
[LOG] 0:00.000 DEBUG handleActions got nil action; ignoring
postal_test.go:679:
c.Assert(len(fakeDisp.DispatchCalls), Equals, 1)
... obtained int = 0
... expected int = 1
** (process:8554): WARNING **: a message with id '0' already exists
OOPS: 101 passed, 1 FAILED
--- FAIL: TestService (0.09s)
FAIL
FAIL launchpad.net/ubuntu-push/client/service 0.105s
=== RUN TestSession
----------------------------------------------------------------------
FAIL: session_test.go:1055: loopSuite.TestLoopBroadcast
[LOG] 0:00.000 INFO using addr:
session_test.go:1056:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.009 DEBUG session.setState: Running -> Error
[LOG] 0:00.009 ERROR unable to ack broadcast: ack
[LOG] 0:00.009 DEBUG session aborting with error from handler.
----------------------------------------------------------------------
FAIL: session_test.go:1106: loopSuite.TestLoopConnBroken
[LOG] 0:00.000 INFO using addr:
session_test.go:1107:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.008 DEBUG session.setState: Running -> Error
[LOG] 0:00.008 ERROR server broke connection: REASON
[LOG] 0:00.008 DEBUG session aborting with error from handler.
----------------------------------------------------------------------
FAIL: session_test.go:1117: loopSuite.TestLoopConnWarn
[LOG] 0:00.000 INFO using addr:
session_test.go:1129:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.015 ERROR server sent warning: XXX
[LOG] 0:00.015 ERROR server sent warning: REASON
[LOG] 0:00.015 DEBUG session aborting with error on read.
[LOG] 0:00.015 DEBUG session.setState: Running -> Error
----------------------------------------------------------------------
FAIL: session_test.go:1042: loopSuite.TestLoopLoopsDaLoop
[LOG] 0:00.000 INFO using addr:
session_test.go:1043:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.005 DEBUG ping.
[LOG] 0:00.005 DEBUG ping.
[LOG] 0:00.005 DEBUG ping.
[LOG] 0:00.005 DEBUG ping.
[LOG] 0:00.005 DEBUG ping.
[LOG] 0:00.006 DEBUG ping.
[LOG] 0:00.006 DEBUG ping.
[LOG] 0:00.006 DEBUG ping.
[LOG] 0:00.006 DEBUG ping.
[LOG] 0:00.006 DEBUG session aborting with error on read.
[LOG] 0:00.006 DEBUG session.setState: Running -> Error
----------------------------------------------------------------------
FAIL: session_test.go:1072: loopSuite.TestLoopNotifications
[LOG] 0:00.000 INFO using addr:
session_test.go:1073:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.005 DEBUG session.setState: Running -> Error
[LOG] 0:00.005 ERROR unable to ack notifications: ack
[LOG] 0:00.005 DEBUG session aborting with error from handler.
----------------------------------------------------------------------
FAIL: session_test.go:1032: loopSuite.TestLoopPing
[LOG] 0:00.000 INFO using addr:
session_test.go:1033:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.008 DEBUG session.setState: Running -> Error
[LOG] 0:00.008 ERROR unable to pong: pong
[LOG] 0:00.008 DEBUG session aborting with error from handler.
----------------------------------------------------------------------
FAIL: session_test.go:1024: loopSuite.TestLoopReadError
[LOG] 0:00.000 INFO using addr:
session_test.go:1025:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.005 DEBUG session aborting with error on read.
[LOG] 0:00.005 DEBUG session.setState: Running -> Error
----------------------------------------------------------------------
FAIL: session_test.go:1092: loopSuite.TestLoopSetParams
[LOG] 0:00.000 INFO using addr:
session_test.go:1093:
[LOG] 0:00.000 DEBUG session.setState: Pristine -> Running
c.Check(s.sess.State(), Equals, Running)
... obtained session.ClientSessionState = 0x1 ("Pristine")
... expected session.ClientSessionState = 0x5 ("Running")
[LOG] 0:00.005 DEBUG session aborting with error on read.
[LOG] 0:00.005 DEBUG session.setState: Running -> Error
OOPS: 137 passed, 8 FAILED
--- FAIL: TestSession (0.85s)
FAIL
FAIL launchpad.net/ubuntu-push/client/session 0.857s
=== RUN TestSeenState
OK: 11 passed
--- PASS: TestSeenState (0.23s)
PASS
ok launchpad.net/ubuntu-push/client/session/seenstate 0.245s
=== RUN TestConfig
----------------------------------------------------------------------
FAIL: config_test.go:158: configSuite.TestReadFilesErrors
config_test.go:165:
c.Check(err, ErrorMatches, ".*permission denied")
... error string = "read /root: is a directory"
... regex string = ".*permission denied"
----------------------------------------------------------------------
FAIL: config_test.go:337: configFlagsSuite.TestReadUsingFlagsHelp
config_test.go:347:
c.Check(buf.String(), Matches, `(?s).*-cfg@=<config.json>: get config values from file\n.*-d="2s": duration.*`)
... value string = "" +
... " -a\t\n" +
... " -b\t\n" +
... " -c_list\n" +
... " \t\n" +
... " -cfg@ value\n" +
... " \tget config values from file (default <config.json>)\n" +
... " -d\tduration (default \"2s\")\n" +
... " -e\t\n" +
... " -f\t\n"
... regex string = "(?s).*-cfg@=<config.json>: get config values from file\\n.*-d=\"2s\": duration.*"
OOPS: 19 passed, 2 FAILED
--- FAIL: TestConfig (0.01s)
FAIL
FAIL launchpad.net/ubuntu-push/config 0.020s
# launchpad.net/ubuntu-push/identifier/testing
identifier/testing/testing_test.go:21: can't find import: "launchpad.net/gocheck"
=== RUN TestRef
--- PASS: TestRef (0.00s)
=== RUN TestIncremental
hel|lo|
hel|lo, wo|rld|
19 |Jan 20|38 at 3:14:0|7 AM|
The| quick| brown fox j|umps over the lazy dog.|
--- PASS: TestIncremental (0.00s)
PASS
ok launchpad.net/ubuntu-push/external/murmur3 0.007s
=== RUN Test
OK: 3 passed
--- PASS: Test (0.00s)
PASS
ok launchpad.net/ubuntu-push/identifier 0.026s
FAIL launchpad.net/ubuntu-push/identifier/testing [build failed]
libust[8846/8848]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8846/8848]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8846/8847]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8846/8847]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN Test
----------------------------------------------------------------------
FAIL: kindpool_test.go:503: poolSuite.TestRunBacklogFailedContinuesDiffApp
[LOG] 0:00.000 DEBUG using helper com.example.test_test-app-1-helper (exec: bar) for app com.example.test_test-app-1
[LOG] 0:00.000 ERROR unable to find launcher for kind: NOT-THERE
[LOG] 0:00.000 ERROR unable to get helper output; putting payload into message
[LOG] 0:00.000 DEBUG using helper com.example.test_test-app-3-helper (exec: bar) for app com.example.test_test-app-3
[LOG] 0:00.000 DEBUG current helper input backlog has grown to 1 entries.
kindpool_test.go:544:
// Everything up to here was just set-up.
//
// What we're checking for is that, if a helper launch fails, the
// next one in the backlog is picked up.
c.Assert(takeNext(ch, c).Input.App, Equals, app1)
... obtained *click.AppId = &click.AppId{Package:"com.example.test", Application:"test-app-2", Version:"", Click:true, original:"com.example.test_test-app-2"} ("com.example.test_test-app-2")
... expected *click.AppId = &click.AppId{Package:"com.example.test", Application:"test-app-1", Version:"", Click:true, original:"com.example.test_test-app-1"} ("com.example.test_test-app-1")
----------------------------------------------------------------------
FAIL: kindpool_test.go:452: poolSuite.TestRunNthAppToBacklog
[LOG] 0:00.000 DEBUG using helper com.example.test_test-app-1-helper (exec: bar) for app com.example.test_test-app-1
[LOG] 0:00.000 DEBUG using helper com.example.test_test-app-2-helper (exec: bar) for app com.example.test_test-app-2
[LOG] 0:00.000 DEBUG using helper com.example.test_test-app-3-helper (exec: bar) for app com.example.test_test-app-3
[LOG] 0:00.000 INFO com.example.test_test-app-1-helper helper output:
[LOG] 0:00.000 ERROR failed to parse HelperOutput from com.example.test_test-app-1-helper helper output: unexpected end of JSON input
[LOG] 0:00.000 ERROR unable to get helper output; putting payload into message
[LOG] 0:00.001 INFO com.example.test_test-app-3-helper helper output:
[LOG] 0:00.001 ERROR failed to parse HelperOutput from com.example.test_test-app-3-helper helper output: unexpected end of JSON input
[LOG] 0:00.001 ERROR unable to get helper output; putting payload into message
[LOG] 0:00.001 INFO com.example.test_test-app-2-helper helper output:
[LOG] 0:00.001 ERROR failed to parse HelperOutput from com.example.test_test-app-2-helper helper output: unexpected end of JSON input
[LOG] 0:00.001 ERROR unable to get helper output; putting payload into message
kindpool_test.go:500:
// this is the crux: we're checking that the third Run() went to the backlog.
c.Check(s.log.Captured(), Matches,
`(?ms).* helper input backlog has grown to 1 entries\.$.*shrunk to 0 entries\.$`)
... value string = "" +
... "DEBUG using helper com.example.test_test-app-2-helper (exec: bar) for app com.example.test_test-app-2\n" +
... "DEBUG using helper com.example.test_test-app-3-helper (exec: bar) for app com.example.test_test-app-3\n" +
... "INFO com.example.test_test-app-1-helper helper output: \n" +
... "ERROR failed to parse HelperOutput from com.example.test_test-app-1-helper helper output: unexpected end of JSON input\n" +
... "ERROR unable to get helper output; putting payload into message\n" +
... "INFO com.example.test_test-app-3-helper helper output: \n" +
... "ERROR failed to parse HelperOutput from com.example.test_test-app-3-helper helper output: unexpected end of JSON input\n" +
... "ERROR unable to get helper output; putting payload into message\n" +
... "INFO com.example.test_test-app-2-helper helper output: \n" +
... "ERROR failed to parse HelperOutput from com.example.test_test-app-2-helper helper output: unexpected end of JSON input\n" +
... "ERROR unable to get helper output; putting payload into message\n"
... regex string = "(?ms).* helper input backlog has grown to 1 entries\\.$.*shrunk to 0 entries\\.$"
OOPS: 32 passed, 2 FAILED
--- FAIL: Test (0.52s)
FAIL
FAIL launchpad.net/ubuntu-push/launch_helper 0.537s
? launchpad.net/ubuntu-push/launch_helper/cual [no test files]
=== RUN TestHelperFinder
OK: 12 passed
--- PASS: TestHelperFinder (0.01s)
PASS
ok launchpad.net/ubuntu-push/launch_helper/helper_finder 0.020s
=== RUN Test
OK: 7 passed
--- PASS: Test (0.09s)
PASS
ok launchpad.net/ubuntu-push/launch_helper/legacy 0.104s
=== RUN TestLogger
OK: 12 passed
--- PASS: TestLogger (0.00s)
PASS
ok launchpad.net/ubuntu-push/logger 0.007s
libust[8988/8991]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8988/8991]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8988/8990]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[8988/8990]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN Test
OK: 13 passed
--- PASS: Test (0.00s)
PASS
ok launchpad.net/ubuntu-push/messaging 0.030s
? launchpad.net/ubuntu-push/messaging/cmessaging [no test files]
? launchpad.net/ubuntu-push/messaging/reply [no test files]
=== RUN TestNIH
OK: 1 passed
--- PASS: TestNIH (0.00s)
PASS
ok launchpad.net/ubuntu-push/nih 0.062s
? launchpad.net/ubuntu-push/nih/cnih [no test files]
=== RUN TestPoller
OK: 2 passed
--- PASS: TestPoller (0.30s)
PASS
ok launchpad.net/ubuntu-push/poller 0.311s
=== RUN TestProtocol
OK: 17 passed
--- PASS: TestProtocol (0.01s)
PASS
ok launchpad.net/ubuntu-push/protocol 0.012s
=== RUN TestRunners
OK: 8 passed
--- PASS: TestRunners (0.04s)
PASS
ok launchpad.net/ubuntu-push/server 0.145s
=== RUN TestHandlers
OK: 42 passed
--- PASS: TestHandlers (0.04s)
PASS
ok launchpad.net/ubuntu-push/server/api 0.074s
=== RUN TestBroker
OK: 23 passed
--- PASS: TestBroker (0.00s)
PASS
ok launchpad.net/ubuntu-push/server/broker 0.013s
=== RUN TestSimple
OK: 16 passed
--- PASS: TestSimple (0.03s)
PASS
ok launchpad.net/ubuntu-push/server/broker/simple 0.077s
? launchpad.net/ubuntu-push/server/broker/testing [no test files]
? launchpad.net/ubuntu-push/server/broker/testsuite [no test files]
? launchpad.net/ubuntu-push/server/dev [no test files]
=== RUN TestListener
----------------------------------------------------------------------
FAIL: listener_test.go:205: listenerSuite.TestDeviceAcceptLoopTemporaryError
listener_test.go:222:
c.Assert(string(res), Matches, "(?s).*timed out.*")
... value string = "[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:600)|0|0.004799365997314453\n"
... regex string = "(?s).*timed out.*"
----------------------------------------------------------------------
FAIL: listener_test.go:82: listenerSuite.TestDeviceListenError
listener_test.go:85:
c.Check(err, ErrorMatches, ".*permission denied.*")
... value = nil
... regex string = ".*permission denied.*"
... Error value is nil
OOPS: 5 passed, 2 FAILED
--- FAIL: TestListener (0.27s)
FAIL
FAIL launchpad.net/ubuntu-push/server/listener 0.280s
=== RUN TestSession
----------------------------------------------------------------------
FAIL: session_test.go:220: sessionSuite.TestSessionLoop
session_test.go:241:
c.Check((<-track.interval).(time.Duration) <= 16*time.Millisecond, Equals, true)
... obtained bool = false
... expected bool = true
OOPS: 30 passed, 1 FAILED
--- FAIL: TestSession (0.39s)
FAIL
FAIL launchpad.net/ubuntu-push/server/session 0.449s
=== RUN TestStore
OK: 24 passed
--- PASS: TestStore (0.00s)
PASS
ok launchpad.net/ubuntu-push/server/store 0.046s
libust[9500/9502]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[9500/9502]: Error: Error opening shm /lttng-ust-wait-5-0 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[9500/9501]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
libust[9500/9501]: Error: Error opening shm /lttng-ust-wait-5 (in get_wait_shm() at lttng-ust-comm.c:971)
=== RUN TestSounds
OK: 7 passed
--- PASS: TestSounds (0.05s)
PASS
ok launchpad.net/ubuntu-push/sounds 0.087s
? launchpad.net/ubuntu-push/testing [no test files]
=== RUN Test
OK: 5 passed
--- PASS: Test (0.00s)
PASS
ok launchpad.net/ubuntu-push/testing/condition 0.070s
=== RUN TestUrldispatcher
OK: 9 passed
--- PASS: TestUrldispatcher (0.00s)
PASS
ok launchpad.net/ubuntu-push/urldispatcher 0.035s
? launchpad.net/ubuntu-push/urldispatcher/curldispatcher [no test files]
=== RUN TestRedialer
OK: 6 passed
--- PASS: TestRedialer (0.00s)
PASS
ok launchpad.net/ubuntu-push/util 0.003s
|