Ubuntu Pastebin

Paste from root at Fri, 18 Dec 2015 12:24:11 +0000

Download as text
   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
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
dpkg-buildpackage: warning: using a gain-root-command while being root
dpkg-buildpackage: source package libaccounts-glib
dpkg-buildpackage: source version 1.19-0ubuntu1
dpkg-buildpackage: source distribution UNRELEASED
dpkg-buildpackage: source changed by Alberto Mardegan <alberto.mardegan@canonical.com>
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
 dpkg-source --before-build s390-tests
dpkg-buildpackage: host architecture s390x
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
 fakeroot debian/rules clean
dh clean --with autoreconf,python2
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   dh_testdir
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   dh_auto_clean
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   dh_autoreconf_clean
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   dh_clean
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
 debian/rules build
dh build --with autoreconf,python2
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   dh_testdir
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
   debian/rules override_dh_autoreconf
make[1]: Entering directory '/root/s390-tests'
NOCONFIGURE=1 dh_autoreconf ./autogen.sh
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force --warnings=all -I m4
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'.
libtoolize: copying file `build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
autoreconf: running: /usr/bin/autoconf --force --warnings=all
autoreconf: running: /usr/bin/autoheader --force --warnings=all
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
autoreconf: running: automake --add-missing --copy --force-missing --warnings=all
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
configure.ac:16: installing 'build-aux/compile'
configure.ac:22: installing 'build-aux/config.guess'
configure.ac:22: installing 'build-aux/config.sub'
configure.ac:14: installing 'build-aux/install-sh'
configure.ac:14: installing 'build-aux/missing'
Makefile.am: installing './INSTALL'
gtk-doc.make:84: warning: GTK_DOC_V_SETUP_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:85: warning: GTK_DOC_V_SETUP_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:105: warning: GTK_DOC_V_SCAN_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:106: warning: GTK_DOC_V_SCAN_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:109: warning: GTK_DOC_V_INTROSPECT_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:110: warning: GTK_DOC_V_INTROSPECT_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:141: warning: GTK_DOC_V_XML_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:142: warning: GTK_DOC_V_XML_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:169: warning: GTK_DOC_V_HTML_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:170: warning: GTK_DOC_V_HTML_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:173: warning: GTK_DOC_V_XREF_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:174: warning: GTK_DOC_V_XREF_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:205: warning: GTK_DOC_V_PDF_$(V: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
gtk-doc.make:206: warning: GTK_DOC_V_PDF_$(AM_DEFAULT_VERBOSITY: non-POSIX recursive variable expansion
docs/reference/Makefile.am:77:   'gtk-doc.make' included from here
/usr/share/automake-1.15/am/ltlibrary.am: warning: 'libaccounts-glib.la': linking libtool libraries using a non-POSIX
/usr/share/automake-1.15/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
libaccounts-glib/Makefile.am:1:   while processing Libtool library 'libaccounts-glib.la'
libaccounts-glib/Makefile.am: installing 'build-aux/depcomp'
pygobject/Makefile.am:2: installing 'build-aux/py-compile'
parallel-tests: installing 'build-aux/test-driver'
autoreconf: Leaving directory `.'
make[1]: Leaving directory '/root/s390-tests'
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/root/s390-tests'
dh_auto_configure -- --enable-gtk-doc --disable-wal --enable-debug
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
	./configure --build=s390x-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/s390x-linux-gnu --libexecdir=\${prefix}/lib/s390x-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --enable-gtk-doc --disable-wal --enable-debug
configure: WARNING: unrecognized options: --disable-maintainer-mode
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for gcc option to accept ISO C99... none needed
checking for gcc option to accept ISO Standard C... (cached) none needed
checking for a sed that does not truncate output... /bin/sed
checking build system type... s390x-ibm-linux-gnu
checking host system type... s390x-ibm-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert s390x-ibm-linux-gnu file names to s390x-ibm-linux-gnu format... func_convert_file_noop
checking how to convert s390x-ibm-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf64_s390) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gobject-introspection... yes
checking for LIBACCOUNTS... yes
checking for library containing clock_gettime... none required
checking for CHECK... yes
checking where to install tests... ${pkglibdir}
checking where to install test data... ${pkgdatadir}/testdata
checking for gtk-doc... yes
checking for gtkdoc-check... gtkdoc-check.test
checking for gtkdoc-check... /usr/bin/gtkdoc-check
checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
checking whether to build gtk-doc documentation... yes
checking for GTKDOC_DEPS... yes
checking for python... /usr/bin/python
checking for python version... 2.7
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.7/dist-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.7/dist-packages
checking for xmllint... /usr/bin/xmllint
checking for XML catalog (/etc/xml/catalog)... found
checking for xmlcatalog... /usr/bin/xmlcatalog
checking for xsltproc... yes
checking for DocBook XML DTD V4.3 in XML catalog... found
checking for DocBook XSL Stylesheets in XML catalog... found
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libaccounts-glib/Makefile
config.status: creating libaccounts-glib.pc
config.status: creating docs/Makefile
config.status: creating docs/reference/Makefile
config.status: creating docs/reference/version.xml
config.status: creating pygobject/Makefile
config.status: creating tests/Makefile
config.status: creating tools/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: WARNING: unrecognized options: --disable-maintainer-mode
make[1]: Leaving directory '/root/s390-tests'
   dh_auto_build
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_NAME = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
	make -j1
make[1]: Entering directory '/root/s390-tests'
make  all-recursive
make[2]: Entering directory '/root/s390-tests'
Making all in libaccounts-glib
make[3]: Entering directory '/root/s390-tests/libaccounts-glib'
glib-genmarshal --body --prefix=ag_marshal ag-marshal.list > ag-marshal.c
glib-genmarshal --header --prefix=ag_marshal ag-marshal.list > ag-marshal.h
make  all-am
make[4]: Entering directory '/root/s390-tests/libaccounts-glib'
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-account.lo `test -f 'ag-account.c' || echo './'`ag-account.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-account.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-account.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-account-service.lo `test -f 'ag-account-service.c' || echo './'`ag-account-service.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-account-service.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-account-service.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-application.lo `test -f 'ag-application.c' || echo './'`ag-application.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-application.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-application.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-auth-data.lo `test -f 'ag-auth-data.c' || echo './'`ag-auth-data.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-auth-data.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-auth-data.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-debug.lo `test -f 'ag-debug.c' || echo './'`ag-debug.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-debug.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-debug.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-manager.lo `test -f 'ag-manager.c' || echo './'`ag-manager.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-manager.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-manager.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-provider.lo `test -f 'ag-provider.c' || echo './'`ag-provider.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-provider.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-provider.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-service.lo `test -f 'ag-service.c' || echo './'`ag-service.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-service.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-service.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-service-type.lo `test -f 'ag-service-type.c' || echo './'`ag-service-type.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-service-type.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-service-type.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-util.lo `test -f 'ag-util.c' || echo './'`ag-util.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-util.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-util.o
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H   -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o libaccounts_glib_la-ag-marshal.lo `test -f 'ag-marshal.c' || echo './'`ag-marshal.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I.. -I.. -I. -DG_LOG_DOMAIN=\"accounts-glib\" -D_FORTIFY_SOURCE=2 -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c ag-marshal.c  -fPIC -DPIC -o .libs/libaccounts_glib_la-ag-marshal.o
/bin/bash ../libtool  --tag=CC   --mode=link gcc -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2  -Wall -Werror -Wno-error=deprecated-declarations -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -version-info 1:3:1 --no-allow-shlib-undefined -export-symbols-regex '^ag_' -Wl,-Bsymbolic-functions -Wl,-z,relro -o libaccounts-glib.la -rpath /usr/lib/s390x-linux-gnu libaccounts_glib_la-ag-account.lo libaccounts_glib_la-ag-account-service.lo libaccounts_glib_la-ag-application.lo libaccounts_glib_la-ag-auth-data.lo libaccounts_glib_la-ag-debug.lo libaccounts_glib_la-ag-manager.lo libaccounts_glib_la-ag-provider.lo libaccounts_glib_la-ag-service.lo libaccounts_glib_la-ag-service-type.lo libaccounts_glib_la-ag-util.lo libaccounts_glib_la-ag-marshal.lo -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 
libtool: link: /usr/bin/nm -B  .libs/libaccounts_glib_la-ag-account.o .libs/libaccounts_glib_la-ag-account-service.o .libs/libaccounts_glib_la-ag-application.o .libs/libaccounts_glib_la-ag-auth-data.o .libs/libaccounts_glib_la-ag-debug.o .libs/libaccounts_glib_la-ag-manager.o .libs/libaccounts_glib_la-ag-provider.o .libs/libaccounts_glib_la-ag-service.o .libs/libaccounts_glib_la-ag-service-type.o .libs/libaccounts_glib_la-ag-util.o .libs/libaccounts_glib_la-ag-marshal.o   | sed -n -e 's/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 's/.* //' | sort | uniq > .libs/libaccounts-glib.exp
libtool: link: /bin/grep -E -e "^ag_" ".libs/libaccounts-glib.exp" > ".libs/libaccounts-glib.expT"
libtool: link: mv -f ".libs/libaccounts-glib.expT" ".libs/libaccounts-glib.exp"
libtool: link: echo "{ global:" > .libs/libaccounts-glib.ver
libtool: link:  cat .libs/libaccounts-glib.exp | sed -e "s/\(.*\)/\1;/" >> .libs/libaccounts-glib.ver
libtool: link:  echo "local: *; };" >> .libs/libaccounts-glib.ver
libtool: link:  gcc -shared  -fPIC -DPIC  .libs/libaccounts_glib_la-ag-account.o .libs/libaccounts_glib_la-ag-account-service.o .libs/libaccounts_glib_la-ag-application.o .libs/libaccounts_glib_la-ag-auth-data.o .libs/libaccounts_glib_la-ag-debug.o .libs/libaccounts_glib_la-ag-manager.o .libs/libaccounts_glib_la-ag-provider.o .libs/libaccounts_glib_la-ag-service.o .libs/libaccounts_glib_la-ag-service-type.o .libs/libaccounts_glib_la-ag-util.o .libs/libaccounts_glib_la-ag-marshal.o   -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 /usr/lib/s390x-linux-gnu/libsqlite3.so  -pthread -O2 -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro   -pthread -Wl,-soname -Wl,libaccounts-glib.so.0 -Wl,-version-script -Wl,.libs/libaccounts-glib.ver -o .libs/libaccounts-glib.so.0.1.3
libtool: link: (cd ".libs" && rm -f "libaccounts-glib.so.0" && ln -s "libaccounts-glib.so.0.1.3" "libaccounts-glib.so.0")
libtool: link: (cd ".libs" && rm -f "libaccounts-glib.so" && ln -s "libaccounts-glib.so.0.1.3" "libaccounts-glib.so")
libtool: link: ( cd ".libs" && rm -f "libaccounts-glib.la" && ln -s "../libaccounts-glib.la" "libaccounts-glib.la" )
CPPFLAGS="-D_FORTIFY_SOURCE=2" CFLAGS="-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL" LDFLAGS="-Wl,-Bsymbolic-functions -Wl,-z,relro" CC="gcc"  /usr/bin/g-ir-scanner  --add-include-path=. --namespace=Accounts --nsversion=1.0 --libtool="/bin/bash ../libtool"  --include=GObject-2.0 --include=Gio-2.0   --library=libaccounts-glib.la --identifier-prefix=Ag --symbol-prefix=ag --c-include="libaccounts-glib/accounts-glib.h" --warn-all --cflags-begin -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -I.. --cflags-end  ag-account.c ag-account.h ag-account-service.c ag-account-service.h ag-application.c ag-application.h ag-auth-data.c ag-auth-data.h ag-errors.h ag-manager.c ag-manager.h ag-provider.c ag-provider.h ag-service.c ag-service.h ag-service-type.c ag-service-type.h ag-types.h libaccounts-glib.la --output Accounts-1.0.gir
g-ir-scanner: link: /bin/bash ../libtool --mode=link --tag=CC gcc -o /root/s390-tests/libaccounts-glib/tmp-introspectfa2Hx3/Accounts-1.0 -export-dynamic -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z,relro tmp-introspectfa2Hx3/root/s390-tests/libaccounts-glib/tmp-introspectfa2Hx3/Accounts-1.0.o -L. libaccounts-glib.la -lgio-2.0 -lgobject-2.0 -Wl,--export-dynamic -lgmodule-2.0 -pthread -lglib-2.0
libtool: link: gcc -o /root/s390-tests/libaccounts-glib/tmp-introspectfa2Hx3/.libs/Accounts-1.0 -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro tmp-introspectfa2Hx3/root/s390-tests/libaccounts-glib/tmp-introspectfa2Hx3/Accounts-1.0.o -Wl,--export-dynamic -pthread -Wl,--export-dynamic  -L. ./.libs/libaccounts-glib.so -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -pthread
/usr/bin/g-ir-compiler --includedir=. --includedir=. Accounts-1.0.gir -o Accounts-1.0.typelib
make[4]: Leaving directory '/root/s390-tests/libaccounts-glib'
make[3]: Leaving directory '/root/s390-tests/libaccounts-glib'
Making all in docs
make[3]: Entering directory '/root/s390-tests/docs'
Making all in reference
make[4]: Entering directory '/root/s390-tests/docs/reference'
xsltproc -nonet --path . http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl ag-backup.xml
Note: Writing ag-backup.1
xsltproc -nonet --path . http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl ag-tool.xml
Note: Writing ag-tool.1
if test "/root/s390-tests/docs/reference" != "/root/s390-tests/docs/reference" ; then \
    files=`echo ag-backup.xml ag-tool.xml application-file-format.xml gettext-xml-files.xml libaccounts-compiling.xml libaccounts-glossary.xml libaccounts-overview.xml libaccounts-running.xml provider-file-format.xml service-file-format.xml service-type-file-format.xml validating-xml-files.xml  libaccounts-glib-docs.xml libaccounts-glib-sections.txt libaccounts-glib-overrides.txt libaccounts-glib.types`; \
    if test "x$files" != "x" ; then \
        for file in $files ; do \
            destdir=`dirname /root/s390-tests/docs/reference/$file`; \
            test -d "$destdir" || mkdir -p "$destdir"; \
            test -f /root/s390-tests/docs/reference/$file && \
                cp -pf /root/s390-tests/docs/reference/$file /root/s390-tests/docs/reference/$file || true; \
        done; \
    fi; \
fi
touch setup-build.stamp
_source_dir='' ; \
for i in ../../libaccounts-glib ; do \
    _source_dir="${_source_dir} --source-dir=$i" ; \
done ; \
gtkdoc-scan --module=libaccounts-glib --ignore-headers="ag-marshal.h ag-debug.h ag-internals.h ag-util.h" ${_source_dir} --rebuild-types --deprecated-guards="AG_DISABLE_DEPRECATED" 
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
if grep -l '^..*$' libaccounts-glib.types > /dev/null 2>&1 ; then \
    scanobj_options=""; \
    gtkdoc-scangobj 2>&1 --help | grep  >/dev/null "\-\-verbose"; \
    if test "$?" = "0"; then \
        if test "x" = "x1"; then \
            scanobj_options="--verbose"; \
        fi; \
    fi; \
    CC="/bin/bash ../../libtool --tag=CC --mode=compile gcc  -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I../.. -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL" LD="/bin/bash ../../libtool --tag=CC --mode=link gcc -lgobject-2.0 -lglib-2.0  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -Wl,-Bsymbolic-functions -Wl,-z,relro" RUN="/bin/bash ../../libtool --mode=execute" CFLAGS=" -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL" LDFLAGS="../../libaccounts-glib/libaccounts-glib.la -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 -Wl,-Bsymbolic-functions -Wl,-z,relro" \
    gtkdoc-scangobj  $scanobj_options --module=libaccounts-glib; \
else \
    for i in libaccounts-glib.args libaccounts-glib.hierarchy libaccounts-glib.interfaces libaccounts-glib.prerequisites libaccounts-glib.signals ; do \
        test -f $i || touch $i ; \
    done \
fi
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
touch scan-build.stamp
/bin/mkdir -p xml && ( \
	echo "<!ENTITY package \"libaccounts-glib\">"; \
	echo "<!ENTITY package_bugreport \"https://gitlab.com/accounts-sso/libaccounts-glib/issues\">"; \
	echo "<!ENTITY package_name \"libaccounts-glib\">"; \
	echo "<!ENTITY package_string \"libaccounts-glib 1.19\">"; \
	echo "<!ENTITY package_tarname \"libaccounts-glib\">"; \
	echo "<!ENTITY package_url \"https://gitlab.com/accounts-sso/libaccounts-glib\">"; \
	echo "<!ENTITY package_version \"1.19\">"; \
) > xml/gtkdocentities.ent
_source_dir='' ; \
for i in ../../libaccounts-glib ; do \
    _source_dir="${_source_dir} --source-dir=$i" ; \
done ; \
gtkdoc-mkdb --module=libaccounts-glib --output-format=xml --expand-content-files="" --main-sgml-file=libaccounts-glib-docs.xml ${_source_dir} --source-dir=../../libaccounts-glib --sgml-mode --output-format=xml --name-space=ag
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
./libaccounts-glib-unused.txt:1: warning: 3 unused declarations.They should be added to libaccounts-glib-sections.txt in the appropriate place.
touch sgml-build.stamp
rm -rf html && mkdir html && \
mkhtml_options=""; \
gtkdoc-mkhtml 2>&1 --help | grep  >/dev/null "\-\-verbose"; \
if test "$?" = "0"; then \
  if test "x" = "x1"; then \
    mkhtml_options="$mkhtml_options --verbose"; \
  fi; \
fi; \
gtkdoc-mkhtml 2>&1 --help | grep  >/dev/null "\-\-path"; \
if test "$?" = "0"; then \
  mkhtml_options="$mkhtml_options --path=\"/root/s390-tests/docs/reference\""; \
fi; \
cd html && gtkdoc-mkhtml $mkhtml_options  libaccounts-glib ../libaccounts-glib-docs.xml
gtkdoc-fixxref --module=libaccounts-glib --module-dir=html --html-dir=/usr/share/gtk-doc/html 
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_PAPER = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_TIME = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
html/AgProvider.html:231: warning: no link for: 'NULL:CAPS' -> (<code class="literal">NULL</code>).
html/AgProvider.html:388: warning: no link for: 'FALSE:CAPS' -> (<code class="literal">FALSE</code>).
html/AgProvider.html:413: warning: no link for: 'TRUE:CAPS' -> (<code class="literal">TRUE</code>).
html/AgProvider.html:478: warning: no link for: 'api-index-1.14' -> (1.14).
html/AgProvider.html:484: warning: no link for: 'GList' -> (<span class="type">GList</span>).
html/AgApplication.html:186: warning: no link for: 'GDesktopAppInfo' -> (<span class="type">GDesktopAppInfo</span>).
html/AgAccount.html:376: warning: no link for: 'G-SIGNAL-RUN-LAST:CAPS' -> (Run Last).
html/AgAccount.html:562: warning: no link for: 'GError' -> (<span class="type">GError</span>).
html/AgAccount.html:801: warning: no link for: 'GValue' -> (<span class="type">GValue</span>).
html/AgAccount.html:1164: warning: no link for: 'GVariant' -> (<span class="type">GVariant</span>).
html/AgAccount.html:1167: warning: no link for: 'g-variant-ref' -> (<code class="function">g_variant_ref()</code>).
html/AgAccount.html:1470: warning: no link for: 'GCancellable' -> (<span class="type">GCancellable</span>).
html/AgAccount.html:1471: warning: no link for: 'GAsyncReadyCallback' -> (<span class="type">GAsyncReadyCallback</span>).
html/AgAccount.html:1517: warning: no link for: 'GAsyncResult' -> (<span class="type">GAsyncResult</span>).
html/AgManager.html:472: warning: no link for: 'g-object-unref' -> (<code class="function">g_object_unref()</code>).
html/AgManager.html:510: warning: no link for: 'g-list-free' -> (<code class="function">g_list_free()</code>).
html/AgAuthData.html:253: warning: no link for: 'G-VARIANT-TYPE-VARDICT:CAPS' -> (<code class="literal">G_VARIANT_TYPE_VARDICT</code>).
html/AgAuthData.html:285: warning: no link for: 'GHashTable' -> (<span class="type">GHashTable</span>).
html/AgAccountService.html:331: warning: no link for: 'g-object-ref' -> (<code class="function">g_object_ref()</code>).
html/AgAccountService.html:362: warning: no link for: 'g-strfreev' -> (<code class="function">g_strfreev()</code>).
touch html-build.stamp
make[4]: Leaving directory '/root/s390-tests/docs/reference'
make[4]: Entering directory '/root/s390-tests/docs'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/root/s390-tests/docs'
make[3]: Leaving directory '/root/s390-tests/docs'
Making all in tools
make[3]: Entering directory '/root/s390-tests/tools'
gcc -DHAVE_CONFIG_H   -I.. -I.. -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o ag_backup-backup.o `test -f 'backup.c' || echo './'`backup.c
/bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -Wl,-Bsymbolic-functions -Wl,-z,relro -o ag-backup ag_backup-backup.o -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro -o ag-backup ag_backup-backup.o  -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 /usr/lib/s390x-linux-gnu/libsqlite3.so
gcc -DHAVE_CONFIG_H   -I.. -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o ag_tool-main.o `test -f 'main.c' || echo './'`main.c
/bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -Wl,-Bsymbolic-functions -Wl,-z,relro -o ag-tool ag_tool-main.o -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 ../libaccounts-glib/libaccounts-glib.la 
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro -o .libs/ag-tool ag_tool-main.o  -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 /usr/lib/s390x-linux-gnu/libsqlite3.so ../libaccounts-glib/.libs/libaccounts-glib.so -pthread
make[3]: Leaving directory '/root/s390-tests/tools'
Making all in pygobject
make[3]: Entering directory '/root/s390-tests/pygobject'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/root/s390-tests/pygobject'
Making all in tests
make[3]: Entering directory '/root/s390-tests/tests'
gdbus-codegen \
	--generate-c-code test-manager \
	--c-generate-object-manager \
	--c-namespace Test \
	--annotate "com.google.code.AccountsSSO.Accounts.Manager" org.gtk.GDBus.C.Name Manager \
	../libaccounts-glib/com.google.code.AccountsSSO.Accounts.Manager.xml
make  all-am
make[4]: Entering directory '/root/s390-tests/tests'
gcc -DHAVE_CONFIG_H   -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -I.. -I../tests -I.. -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o accounts_glib_testsuite-check_ag.o `test -f 'check_ag.c' || echo './'`check_ag.c
gcc -DHAVE_CONFIG_H   -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -I.. -I../tests -I.. -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o accounts_glib_testsuite-test-manager.o `test -f 'test-manager.c' || echo './'`test-manager.c
/bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -Wl,-Bsymbolic-functions -Wl,-z,relro -o accounts-glib-testsuite accounts_glib_testsuite-check_ag.o accounts_glib_testsuite-test-manager.o -lcheck_pic -pthread -lrt -lm -lsubunit -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 ../libaccounts-glib/libaccounts-glib.la 
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro -o .libs/accounts-glib-testsuite accounts_glib_testsuite-check_ag.o accounts_glib_testsuite-test-manager.o -pthread  -lcheck_pic -lrt -lm -lsubunit -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 /usr/lib/s390x-linux-gnu/libsqlite3.so ../libaccounts-glib/.libs/libaccounts-glib.so -pthread
gcc -DHAVE_CONFIG_H   -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/s390x-linux-gnu/glib-2.0/include -I/usr/include/libxml2 -I.. -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -c -o test_process-test-process.o `test -f 'test-process.c' || echo './'`test-process.c
/bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL  -Wl,-Bsymbolic-functions -Wl,-z,relro -o test-process test_process-test-process.o -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lsqlite3 ../libaccounts-glib/libaccounts-glib.la 
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -DENABLE_DEBUG -DDISABLE_WAL -Wl,-Bsymbolic-functions -Wl,-z -Wl,relro -o .libs/test-process test_process-test-process.o  -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 /usr/lib/s390x-linux-gnu/libsqlite3.so ../libaccounts-glib/.libs/libaccounts-glib.so -pthread
/bin/sed -e 's|@''TESTDIR''@|/usr/lib/s390x-linux-gnu/libaccounts-glib|' \
       -e 's|@''TESTDATADIR''@|/usr/share/libaccounts-glib/testdata|' tests.xml.in > tests.xml
make[4]: Leaving directory '/root/s390-tests/tests'
make[3]: Leaving directory '/root/s390-tests/tests'
make[3]: Entering directory '/root/s390-tests'
/bin/sed -e "s|\@DATABASE_DIR\@|libaccounts-glib|" accounts.conf.in > accounts.conf
make[3]: Leaving directory '/root/s390-tests'
make[2]: Leaving directory '/root/s390-tests'
make[1]: Leaving directory '/root/s390-tests'
   debian/rules override_dh_auto_test
make[1]: Entering directory '/root/s390-tests'
# Tests often fail in Jenkins for timeout reasons; therefore, increase
# the timeout value
CK_TIMEOUT_MULTIPLIER=10 CK_DEFAULT_TIMEOUT=0 VERBOSE=1 dh_auto_test
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = (unset),
	LC_TIME = "en_US.UTF-8",
	LC_MONETARY = "en_US.UTF-8",
	LC_ADDRESS = "en_US.UTF-8",
	LC_TELEPHONE = "en_US.UTF-8",
	LC_NAME = "en_US.UTF-8",
	LC_MEASUREMENT = "en_US.UTF-8",
	LC_IDENTIFICATION = "en_US.UTF-8",
	LC_NUMERIC = "en_US.UTF-8",
	LC_PAPER = "en_US.UTF-8",
	LANG = "C"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
	make -j1 check
make[2]: Entering directory '/root/s390-tests'
Making check in libaccounts-glib
make[3]: Entering directory '/root/s390-tests/libaccounts-glib'
make  check-am
make[4]: Entering directory '/root/s390-tests/libaccounts-glib'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/root/s390-tests/libaccounts-glib'
make[3]: Leaving directory '/root/s390-tests/libaccounts-glib'
Making check in docs
make[3]: Entering directory '/root/s390-tests/docs'
Making check in reference
make[4]: Entering directory '/root/s390-tests/docs/reference'
make[4]: Leaving directory '/root/s390-tests/docs/reference'
make[4]: Entering directory '/root/s390-tests/docs'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/root/s390-tests/docs'
make[3]: Leaving directory '/root/s390-tests/docs'
Making check in tools
make[3]: Entering directory '/root/s390-tests/tools'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/root/s390-tests/tools'
Making check in pygobject
make[3]: Entering directory '/root/s390-tests/pygobject'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/root/s390-tests/pygobject'
Making check in tests
make[3]: Entering directory '/root/s390-tests/tests'
make  check-am
make[4]: Entering directory '/root/s390-tests/tests'
make  accounts-glib-testsuite test-process \
  accounts-glib-test.sh xml-dtd-validate.sh
make[5]: Entering directory '/root/s390-tests/tests'
make[5]: 'accounts-glib-testsuite' is up to date.
make[5]: 'test-process' is up to date.
make[5]: Nothing to be done for 'accounts-glib-test.sh'.
make[5]: Nothing to be done for 'xml-dtd-validate.sh'.
make[5]: Leaving directory '/root/s390-tests/tests'
make  check-TESTS
make[5]: Entering directory '/root/s390-tests/tests'
make[6]: Entering directory '/root/s390-tests/tests'
FAIL: accounts-glib-test.sh
PASS: xml-dtd-validate.sh
=================================================
   libaccounts-glib 1.19: tests/test-suite.log
=================================================

# TOTAL: 2
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  1
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: accounts-glib-test.sh
===========================

Using dbus-test-runner
DBus daemon: unix:abstract=/tmp/dbus-IeaPPByUfV,guid=fbf6599a3f05fce3fb3078cf5673fa9b
task-0: Started with PID: 36781
task-0: Running suite(s): accounts-glib
task-0: ** (process:36803): DEBUG: Starting test test_init
task-0: (process:36803): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36803): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36806): DEBUG: Starting test test_timeout_properties
task-0: (process:36806): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36806): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36809): DEBUG: Starting test test_object
task-0: (process:36809): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36809): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36809): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36816): DEBUG: Starting test test_provider
task-0: (process:36816): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36816): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider MyProvider
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_ref: Referencing provider MyProvider (1)
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider MyProvider (2)
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider MyProvider (1)
task-0: (process:36816): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36816): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider MyProvider
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36816): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider MyProvider (1)
task-0: (process:36816): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36816): accounts-glib-DEBUG: ag_account_finalize: Finalizing account with uncommitted changes!
task-0: (process:36816): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36819): DEBUG: Starting test test_provider_settings
task-0: (process:36819): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36819): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider MyProvider
task-0: (process:36819): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36819): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36819): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36819): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36819): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36819): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider MyProvider (1)
task-0: (process:36819): accounts-glib-DEBUG: ag_account_finalize: Finalizing account with uncommitted changes!
task-0: (process:36819): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36822): DEBUG: Starting test test_store
task-0: (process:36822): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36822): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36822): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();
task-0: (process:36822): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36822): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241528-683400413
task-0: ** (process:36822): DEBUG: Running loop
task-0: (process:36822): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037354861068288-2935182423907893248 (0x2aa4bd190b0)
task-0: (process:36822): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36822): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36822): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36826): DEBUG: Starting test test_store_locked
task-0: (process:36826): accounts-glib-DEBUG: open_db: DB version: 1
task-0: ** (process:36826): DEBUG: Running loop
task-0: ** (process:36826): DEBUG: releasing lock
task-0: (process:36826): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36826): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();
task-0: (process:36826): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36826): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241528-786594862
task-0: (process:36826): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037354861068288-3378399207491633152 (0x2aa4bd190b0)
task-0: (process:36826): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: ** (process:36826): DEBUG: account_store_locked_cb called
task-0: (process:36826): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36826): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36830): DEBUG: Starting test test_store_locked_cancel
task-0: (process:36830): accounts-glib-DEBUG: open_db: DB version: 1
task-0: ** (process:36830): DEBUG: Running loop
task-0: ** (process:36830): DEBUG: Cancelling 0x2aa4bd53310
task-0: ** (process:36830): DEBUG: account_store_locked_cancel_cb called
task-0: ** (process:36830): DEBUG: releasing lock
task-0: (process:36830): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36830): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd190b0
task-0: ** (process:36837): DEBUG: Starting test test_service
task-0: (process:36837): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyUnexistingService'
task-0: (process:36837): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyUnexistingService
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyUnexistingService (1)
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36837): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_service_type_load_from_file: Loading service_type e-mail
task-0: (process:36837): accounts-glib-DEBUG: ag_service_type_unref: Unreferencing service_type e-mail (1)
task-0: ** (process:36837): DEBUG:  Service tag: e-mail
task-0: ** (process:36837): DEBUG:  Service tag: messaging
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36837): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36837): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: ** (process:36837): DEBUG:  Service tag: sharing
task-0: ** (process:36837): DEBUG:  Service tag: video
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked

(process:36837): accounts-glib-WARNING **: Unable to load account 14
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'interval', 'i', '30');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'username', 's', '''me@myhome.com''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'check_automatically', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'pets', 'as', '[''cat'', ''dog'', ''monkey'', ''snake'']');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'description', 's', '''This is really a beautiful account''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 2, 'day', 's', '''Wednesday''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 2, 'ForReal', 'b', 'true');
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36837): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241528-997836185
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36837): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037354861068288-4285673781340405760 (0x2aa4bd198b0)
task-0: (process:36837): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36837): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037354861068288-4285673781340405760 (0x2aa4bd198b0)
task-0: (process:36837): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037354861068288-4285673781340405760
task-0: ** (process:36837): DEBUG: Service id: 1
task-0: ** (process:36837): DEBUG: Service2 id: 2
task-0: ** (process:36837): DEBUG: Account id: 12
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (3)
task-0: (process:36837): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36837): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16470
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: (process:36837): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 14
task-0: (process:36837): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16500
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 12
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 12 AND service = 0
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36837): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 12 AND service = 1
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: called: UPDATE Accounts SET  enabled = 1 WHERE id = 12;INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (12, 1, 'day', 's', '''Friday''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (12, 0, 'enabled', 'b', 'true');
task-0: (process:36837): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36837): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-802084
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36837): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-3444924548644864 (0x2aa4bd19960)
task-0: (process:36837): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36837): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16590
task-0: (process:36837): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16590
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36837): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd19960
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36837): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36841): DEBUG: Starting test test_account_services
task-0: (process:36841): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36841): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36841): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36841): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService2
task-0: (process:36841): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36841): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36841): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService2', 'My Service #2', 'maemo', 'calendar');
task-0: (process:36841): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService2'
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36841): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36841): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36841): accounts-glib-DEBUG: ag_account_finalize: Finalizing account with uncommitted changes!
task-0: (process:36841): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (1)
task-0: (process:36841): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36844): DEBUG: Starting test test_settings_iter_gvalue
task-0: (process:36844): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'weight', 's', '''110''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/address', 's', '''Helsinginkatu''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/city', 's', '''Helsinki''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'age', 's', '''90''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/country', 's', '''Suomi''');
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36844): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-8727025
task-0: (process:36844): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider dummyprovider
task-0: (process:36844): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider dummyprovider (1)
task-0: (process:36844): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider dummyprovider
task-0: (process:36844): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider dummyprovider (1)
task-0: (process:36844): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36844): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36844): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (2)
task-0: (process:36844): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 13 AND service = 2
task-0: (process:36844): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36844): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36844): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36844): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36844): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36844): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: ** (process:36844): DEBUG: Got key parameters/fallback-conference-server of type gchararray
task-0: ** (process:36844): DEBUG: Got key parameters/port of type gint
task-0: ** (process:36844): DEBUG: Got key parameters/server of type gchararray
task-0: ** (process:36844): DEBUG: Got key parameters/old-ssl of type gboolean
task-0: (process:36844): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (13, 2, 'parameters/port', 'i', '432412');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (13, 2, 'parameters/message', 's', '"How''s life?"');
task-0: (process:36844): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36844): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-10735951
task-0: (process:36844): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36844): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-37482286966374400 (0x2aa4bd198b0)
task-0: (process:36844): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36844): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: ** (process:36844): DEBUG: Got key port of type gint
task-0: ** (process:36844): DEBUG: Got key message of type gchararray
task-0: ** (process:36844): DEBUG: Got key fallback-conference-server of type gchararray
task-0: ** (process:36844): DEBUG: Got key server of type gchararray
task-0: ** (process:36844): DEBUG: Got key old-ssl of type gboolean
task-0: (process:36844): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36844): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16470
task-0: (process:36844): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (3)
task-0: (process:36844): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36844): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36844): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36848): DEBUG: Starting test test_settings_iter
task-0: (process:36848): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'weight', 's', '''110''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/address', 's', '''Helsinginkatu''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/city', 's', '''Helsinki''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'age', 's', '''90''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'param/country', 's', '''Suomi''');
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36848): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-15545640
task-0: (process:36848): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-66768015395389440 (0x2aa4bd198b0)
task-0: (process:36848): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36848): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider dummyprovider
task-0: (process:36848): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider dummyprovider (1)
task-0: (process:36848): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider dummyprovider
task-0: (process:36848): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider dummyprovider (1)
task-0: (process:36848): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36848): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36848): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (2)
task-0: (process:36848): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 14 AND service = 2
task-0: (process:36848): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36848): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36848): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36848): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36848): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36848): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: ** (process:36848): DEBUG: Got key parameters/fallback-conference-server of type s
task-0: ** (process:36848): DEBUG: Got key parameters/port of type i
task-0: ** (process:36848): DEBUG: Got key parameters/server of type s
task-0: ** (process:36848): DEBUG: Got key parameters/old-ssl of type b
task-0: (process:36848): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (14, 2, 'parameters/port', 'n', '32412');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (14, 2, 'parameters/message', 's', '"How''s life?"');
task-0: (process:36848): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36848): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-18124013
task-0: (process:36848): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: ** (process:36848): DEBUG: Got key port of type n
task-0: ** (process:36848): DEBUG: Got key message of type s
task-0: ** (process:36848): DEBUG: Got key fallback-conference-server of type s
task-0: ** (process:36848): DEBUG: Got key server of type s
task-0: ** (process:36848): DEBUG: Got key old-ssl of type b
task-0: (process:36848): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36848): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16470
task-0: (process:36848): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (3)
task-0: (process:36848): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36848): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36848): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36852): DEBUG: Starting test test_service_type
task-0: (process:36852): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36852): accounts-glib-DEBUG: _ag_service_type_load_from_file: Loading service_type I don't exist
task-0: (process:36852): accounts-glib-DEBUG: ag_service_type_unref: Unreferencing service_type I don't exist (1)
task-0: (process:36852): accounts-glib-DEBUG: _ag_service_type_load_from_file: Loading service_type e-mail
task-0: (process:36852): accounts-glib-DEBUG: ag_service_type_unref: Unreferencing service_type e-mail (1)
task-0: (process:36852): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: ** (process:36855): DEBUG: Starting test test_account_service
task-0: (process:36855): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36855): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36855): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'description', 's', '''This is really a beautiful account''');
task-0: (process:36855): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36855): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-23726469
task-0: (process:36855): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-101904408404557824 (0x2aa4bd198b0)
task-0: (process:36855): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36855): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36855): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 15 AND service = 1
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (6)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (7)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36855): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36855): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51210
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36855): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51260
task-0: (process:36855): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16470
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36855): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16470
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36855): accounts-glib-DEBUG: ag_account_finalize: Finalizing account with uncommitted changes!
task-0: (process:36855): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36855): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36859): DEBUG: Starting test test_account_service_enabledness
task-0: (process:36859): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36859): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'false');
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36859): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-28228589
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 0
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (16, 1, 'enabled', 'b', 'true');
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36859): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-29974158
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: MyService, enabled: 1
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-121240866567225344 (0x2aa4bd198b0)
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 0
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: called: UPDATE Accounts SET  enabled = 1 WHERE id = 16;INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (16, 0, 'enabled', 'b', 'true');
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36859): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-31749888
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 1
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-128738028335136768 (0x2aa4bd198b0)
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36859): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: MyService, enabled: 1
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36859): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd511c0
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36859): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36859): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36859): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36859): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 16
task-0: (process:36859): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 16 AND service = 0
task-0: (process:36859): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36859): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd513a0
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 16 AND service = 1
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (16, 1, 'enabled', 'b', 'false');
task-0: (process:36859): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36859): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-33841825
task-0: (process:36859): accounts-glib-DEBUG: on_account_enabled: service: MyService, enabled: 0
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36859): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51430
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36859): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36859): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36859): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd19960
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36859): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36863): DEBUG: Starting test test_account_service_settings
task-0: (process:36863): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36863): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'username', 's', '''me@myhome.com''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'check_automatically', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36863): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-38453202
task-0: (process:36863): accounts-glib-DEBUG: on_account_enabled: service: MyService, enabled: 1
task-0: (process:36863): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 0
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-165155245016481792 (0x2aa4bd198b0)
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: on_account_enabled: service: MyService, enabled: 1
task-0: (process:36863): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 0
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-165155245016481792 (0x2aa4bd198b0)
task-0: (process:36863): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037359156035584-165155245016481792
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (17, 1, 'day', 's', '''Wednesday''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (17, 1, 'check_automatically', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (17, 1, 'ForReal', 'b', 'true');
task-0: (process:36863): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36863): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-40741139
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-174981859606790144 (0x2aa4bd198b0)
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36863): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36863): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36863): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36863): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd511c0
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36863): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36863): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36863): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36863): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36867): DEBUG: Starting test test_account_service_list
task-0: (process:36867): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'maemo', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-63995013
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-274856487942094848 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'maemo', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-65951651
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'maemo', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-67780081
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-283260184162205696 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE enabled=1;
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 3
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='3';
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts;
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 3
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36867): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36867): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService2
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService2', 'My Service #2', 'maemo', 'calendar');
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService2'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36867): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('OtherService', 'Other Service', 'other_provider', 'sharing');
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'OtherService'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (12)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (12)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51880
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51830
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd517a0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51750
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51700
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd516b0
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (3)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 2, 'enabled', 'b', 'false');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-75972765
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-291113231215230976 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (2, 2, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (2, 1, 'enabled', 'b', 'true');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-77984017
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-326300541061693440 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/calendar, time = 1037359156035584-326300541061693440 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037359156035584-326300541061693440
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/calendar, time = 1037359156035584-334938802625708032 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-334938802625708032 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037359156035584-334938802625708032
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (3, 1, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (3, 2, 'enabled', 'b', 'true');
task-0: (process:36867): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36867): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-80045452
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-343792598533537792 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/calendar, time = 1037359156035584-343792598533537792 (0x2aa4bd198b0)
task-0: (process:36867): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037359156035584-343792598533537792
task-0: (process:36867): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts;
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 3
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 2
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (12)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (12)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (11)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff94006520
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (10)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff94006570
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16eb0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (10)
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16eb0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (9)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff940065c0
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff94006610
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d90
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff94006660
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x3ff940066b0
task-0: (process:36867): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE enabled=1;
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 3
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='3';
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 3 AND service = 2
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (5)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 2
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='2';
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 2 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (6)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (8)
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (7)
task-0: (process:36867): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36867): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService ** (process:36871): DEBUG: Starting test test_auth_data
task-0: (process:36871): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36871): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36871): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36871): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'maemo', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'auth/method', 's', '''dummy-method''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'auth/mechanism', 's', '''dummy-mechanism''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'auth/dummy-method/dummy-mechanism/display', 's', '''mobile''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'CredentialsId', 'u', '3735928559');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'auth/dummy-method/dummy-mechanism/service', 's', '''calendar''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'auth/dummy-method/dummy-mechanism/id', 's', '''123''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'auth/dummy-method/dummy-mechanism/service', 's', '''contacts''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:36871): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36871): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-107955647
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36871): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-463665973283520512 (0x2aa4bd198b0)
task-0: (process:36871): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36871): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-463665973283520512 (0x2aa4bd198b0)
task-0: (process:36871): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037359156035584-463665973283520512
task-0: (process:36871): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36871): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36871): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36871): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36871): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36871): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51660
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36871): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36871): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36871): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36871): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36871): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36875): DEBUG: Starting test test_auth_data_get_login_parameters
task-0: (process:36875): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36875): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51610
task-0: (process:36875): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36875): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36875): accounts-glib-DEBUG: ag_account_finalize: Finalizing account with uncommitted changes!
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE provider IN (SELECT provider FROM Services WHERE type = 'e-mail');
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36875): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService2
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService2', 'My Service #2', 'maemo', 'calendar');
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService2'
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36875): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('OtherService', 'Other Service', 'other_provider', 'sharing');
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'OtherService'
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36875): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36875): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36875): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36875): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51660
task-0: (process:36875): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36875): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36875): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36875): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (1)
task-0: (process:36875): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36878): DEBUG: Starting test test_auth_data_insert_parameters
task-0: (process:36878): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE provider IN (SELECT provider FROM Services WHERE type = 'e-mail');
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36878): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:36878): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36878): accounts-glib-DEBUG: _ag_provider_load_from_file: Loading provider maemo
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36878): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd51610
task-0: (process:36878): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36878): accounts-glib-DEBUG: ag_provider_unref: Unreferencing provider maemo (1)
task-0: (process:36878): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36878): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd198b0
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (1)
task-0: (process:36878): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36881): DEBUG: Starting test test_application
task-0: (process:36881): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36881): accounts-glib-DEBUG: _ag_application_load_from_file: Loading application Mailer
task-0: (process:36881): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36881): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36881): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36881): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36881): accounts-glib-DEBUG: _ag_application_load_from_file: Loading application Gallery
task-0: (process:36881): accounts-glib-DEBUG: _ag_application_load_from_file: Loading application Mailer
task-0: (process:36881): accounts-glib-DEBUG: _ag_application_load_from_file: Loading application Gallery
task-0: (process:36881): accounts-glib-DEBUG: _ag_application_load_from_file: Loading application Mailer
task-0: (process:36881): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36881): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36881): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: (process:36881): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36881): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36884): DEBUG: Starting test test_list
task-0: (process:36884): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36884): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36884): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('New account', 'other_provider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''New account''');
task-0: (process:36884): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36884): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-142925888
task-0: (process:36884): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-613862014711758848 (0x2aa4bd1a0b0)
task-0: (process:36884): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36884): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts;
task-0: (process:36884): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36884): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36884): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE provider IN (SELECT provider FROM Services WHERE type = 'e-mail');
task-0: (process:36884): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36884): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36884): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36884): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE provider IN (SELECT provider FROM Services WHERE type = 'sharing');
task-0: (process:36884): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36884): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36884): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: (process:36884): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36884): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36884): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36888): DEBUG: Starting test test_list_enabled_account
task-0: (process:36888): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('EnabledAccount', 'MyProvider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''EnabledAccount''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36888): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-865095013
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('DisabledAccount', 'MyProvider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''DisabledAccount''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'false');
task-0: (process:36888): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36888): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-866774389
task-0: (process:36888): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Accounts WHERE enabled=1;
task-0: ** (process:36892): DEBUG: Starting test test_list_services
task-0: (process:36892): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36892): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36892): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService2'
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36892): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: ** (process:36892): DEBUG: Service name: OtherService
task-0: ** (process:36892): DEBUG: Service name: MyService2
task-0: ** (process:36892): DEBUG: Service name: MyService
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService2 (1)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36892): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService2 (1)
task-0: (process:36892): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36895): DEBUG: Starting test test_account_list_enabled_services
task-0: (process:36895): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:36895): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36895): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36895): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36895): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('OtherService', 'Other Service', 'other_provider', 'sharing');
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'OtherService'
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'maemo', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36895): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-892960749
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (2)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 2
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 2, 'enabled', 'b', 'false');
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36895): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-894495703
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 2, 'enabled', 'b', 'true');
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36895): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-896068398
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1' AND Services.type = 'e-mail';
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1' AND Services.type = 'sharing';
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 1, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 2, 'enabled', 'b', 'false');
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36895): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-897980347
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'maemo', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 2, 'enabled', 'b', 'true');
task-0: (process:36895): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36895): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-917138273
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (5)
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36895): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT DISTINCT Services.name FROM Services JOIN Settings ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Settings.account='1';
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:36895): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36895): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36895): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d90
task-0: (process:36895): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d90
task-0: (process:36895): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a160
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36895): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a210
task-0: (process:36895): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: ** (process:36899): DEBUG: Starting test test_list_service_types
task-0: (process:36899): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36899): accounts-glib-DEBUG: _ag_service_type_load_from_file: Loading service_type e-mail
task-0: ** (process:36899): DEBUG: Service type name: e-mail
task-0: ** (process:36899): DEBUG:  Service type tag: e-mail
task-0: ** (process:36899): DEBUG:  Service type tag: messaging
task-0: (process:36899): accounts-glib-DEBUG: ag_service_type_unref: Unreferencing service_type e-mail (1)
task-0: (process:36899): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: ** (process:36902): DEBUG: Starting test test_signals
task-0: (process:36902): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36902): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36902): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My lovely account', 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My lovely account''');
task-0: (process:36902): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36902): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-922976140
task-0: (process:36902): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-3964152336288317440 (0x2aa4bd1a0b0)
task-0: (process:36902): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36902): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36902): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36902): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: ** (process:36906): DEBUG: Starting test test_signals_other_manager
task-0: (process:36906): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36906): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36906): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'false');
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36906): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-926608399
task-0: (process:36906): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36906): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 4
task-0: (process:36906): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 4 AND service = 0
task-0: (process:36906): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36906): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 4 AND service = 1
task-0: (process:36906): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (4, 1, 'enabled', 'b', 'true');
task-0: (process:36906): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36906): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-928345040
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-3979752769903919104 (0x2aa4bd1a0b0)
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-3979752769903919104 (0x2aa4bd1a160)
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-3987211586203811840 (0x2aa4bd1a0b0)
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36906): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36906): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037359156035584-3987211586203811840 (0x2aa4bd1a160)
task-0: (process:36906): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36906): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16d00
task-0: (process:36906): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16d00
task-0: (process:36906): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a160
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36906): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd16c70
task-0: (process:36906): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd16c70
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36906): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: (process:36906): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)

(process:36910): accounts-glib-WARNING **: Unable to load account 5
task-0: ** (process:36910): DEBUG: Starting test test_delete
task-0: (process:36910): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36910): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-932036452
task-0: (process:36910): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037359156035584-4003066080019873792 (0x2aa4bd1a0b0)
task-0: (process:36910): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: called: DELETE FROM Accounts WHERE id = 5;DELETE FROM Settings WHERE account = 5;
task-0: (process:36910): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36910): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241529-933556549
task-0: (process:36910): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:36910): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 5
task-0: (process:36910): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17500
task-0: (process:36910): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: ** (process:36918): DEBUG: Starting test test_no_dbus
task-0: (process:36918): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36918): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36918): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:36918): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36918): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17230
task-0: (process:36918): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17230
task-0: (process:36918): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: (process:36923): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36923): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36923): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('MyAccountName', 'myprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''MyAccountName''');
task-0: (process:36923): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36923): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241530-58545643
task-0: (process:36923): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-251451622008291328 (0x2aa5b09c0b0)
task-0: (process:36923): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36923): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa5b098c70
task-0: (process:36923): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa5b09c0b0
task-0: (process:36946): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36946): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 8
task-0: (process:36946): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 8 AND service = 0
task-0: (process:36946): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36946): accounts-glib-DEBUG: exec_transaction: called: DELETE FROM Accounts WHERE id = 8;DELETE FROM Settings WHERE account = 8;
task-0: (process:36946): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36946): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241530-69920407
task-0: (process:36946): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-300305861388009472 (0x2aa3caeb0b0)
task-0: (process:36946): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36946): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 8 AND service = 0
task-0: (process:36946): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa3cae7c70
task-0: (process:36964): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36964): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36964): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36964): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36964): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36964): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36964): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('MyAccountName', 'myprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'unsigned', 'u', '54321');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'boolean', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'character', 'i', '122');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'false');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'integer', 'i', '-12345');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'string', 's', '''a string''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'numbers', 'as', '[''one'', ''two'', ''three'']');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''MyAccountName''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:36964): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36964): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241530-81684576
task-0: (process:36964): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36964): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037363451002880-350832582507626496 (0x2aa5d1ad0b0)
task-0: (process:36964): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36964): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36964): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36964): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-350832582507626496 (0x2aa5d1ad0b0)
task-0: (process:36964): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037363451002880-350832582507626496
task-0: (process:36964): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36964): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa5d1a9c70
task-0: (process:36964): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa5d1ad0b0
task-0: (process:36964): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36964): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:36982): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36982): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 9
task-0: (process:36982): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 9 AND service = 0
task-0: (process:36982): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:36982): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36982): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36982): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 9 AND service = 1
task-0: (process:36982): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36982): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36982): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (9, 1, 'boolean', 'b', 'false');DELETE FROM Settings WHERE account = 9 AND service = '1' AND key = 'character';INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (9, 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (9, 0, 'string', 's', '''another string''');
task-0: (process:36982): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36982): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241530-94054598
task-0: (process:36982): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36982): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037363451002880-403961422448427008 (0x2aa3cc0e0b0)
task-0: (process:36982): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:36982): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36982): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:36982): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-403961422448427008 (0x2aa3cc0e0b0)
task-0: (process:36982): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037363451002880-403961422448427008
task-0: (process:36982): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:36982): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa3cc0ac70
task-0: (process:36982): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa3cc0e0b0
task-0: (process:36982): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:36982): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:36919): DEBUG: Starting test test_concurrency
task-0: (process:36919): accounts-glib-DEBUG: open_db: DB version: 1
task-0: ** (process:36919): DEBUG: Running loop
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-251451622008291328 (0x2aa4bd1a8b0)
task-0: ** (process:36919): DEBUG: on_account_created called (8)
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-300305861388009472 (0x2aa4bd1a8b0)
task-0: ** (process:36919): DEBUG: on_account_deleted called (8)
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037363451002880-350832582507626496 (0x2aa4bd1a8b0)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: ** (process:36919): DEBUG: on_account_created called (9)
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-350832582507626496 (0x2aa4bd1a8b0)
task-0: (process:36919): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037363451002880-350832582507626496
task-0: (process:36919): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037363451002880-403961422448427008 (0x2aa4bd1a8b0)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:36919): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:36919): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037363451002880-403961422448427008 (0x2aa4bd1a8b0)
task-0: (process:36919): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037363451002880-403961422448427008
task-0: (process:36919): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:36919): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: ** (process:36999): DEBUG: Starting test test_blocking
task-0: (process:36999): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('Blocked account', 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''Blocked account''');
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36999): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241530-98836275
task-0: (process:36999): accounts-glib-DEBUG: _ag_manager_exec_transaction_blocking: Database locked, sleeping for 200ms
task-0: (process:36999): accounts-glib-DEBUG: _ag_manager_exec_transaction_blocking: Database locked, sleeping for 400ms
task-0: (process:36999): accounts-glib-DEBUG: _ag_manager_exec_transaction_blocking: Database locked, sleeping for 800ms
task-0: (process:36999): accounts-glib-DEBUG: _ag_manager_exec_transaction_blocking: Database locked, sleeping for 1600ms
task-0: (process:36999): accounts-glib-DEBUG: _ag_manager_exec_transaction_blocking: Database locked, sleeping for 3200ms
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: called: UPDATE Accounts SET name = 'Want to change' WHERE id = 10;INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (10, 0, 'name', 's', '''Want to change''');
task-0: (process:36999): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:36999): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241536-311319951
task-0: ** (process:36999): DEBUG: Been blocking for 6202 ms
task-0: (process:36999): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:36999): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17470
task-0: (process:36999): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a0b0
task-0: ** (process:37018): DEBUG: Starting test test_manager_new_for_service_type
task-0: (process:37018): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37018): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'OtherService'
task-0: (process:37018): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service OtherService
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('OtherService', 'Other Service', 'other_provider', 'sharing');
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'OtherService'
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (1)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (2)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'first_provider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37018): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241536-335235710
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037389220806656-1439826410901340160 (0x2aa4bd1a8b0)
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037389220806656-1439826410901340160 (0x2aa4bd1a8b0)
task-0: (process:37018): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037389220806656-1439826410901340160
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'first_provider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 2, 'enabled', 'b', 'false');
task-0: (process:37018): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37018): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241536-862011388
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037389220806656-3702310720239566848 (0x2aa4bd1a8b0)
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37018): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37018): accounts-glib-DEBUG: ag_service_ref: Referencing service OtherService (3)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (4)
task-0: (process:37018): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT Settings.account FROM Settings INNER JOIN Services ON Settings.service = Services.id WHERE Settings.key='enabled' AND Settings.value='true' AND Services.type = 'e-mail' AND Settings.account IN (SELECT id FROM Accounts WHERE enabled=1);
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (3)
task-0: (process:37018): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37018): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17470
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37018): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17500
task-0: (process:37018): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17500
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (2)
task-0: (process:37018): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a8b0
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:37018): accounts-glib-DEBUG: ag_service_unref: Unreferencing service OtherService (1)
task-0: (process:37027): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37027): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:37027): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37027): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37027): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:37027): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37027): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37027): accounts-glib-DEBUG: exec_transaction: called: INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 1, 'enabled', 'b', 'true');
task-0: (process:37027): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37027): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-895251891
task-0: (process:37027): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37027): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037397810741248-3845077593527156736 (0x2aa07ca50b0)
task-0: (process:37027): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37027): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37027): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37027): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37027): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa07ca1c70
task-0: (process:37027): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa07ca50b0
task-0: (process:37027): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37027): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: (process:37045): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37045): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:37045): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:37045): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37045): accounts-glib-DEBUG: exec_transaction: called: UPDATE Accounts SET  enabled = 0 WHERE id = 1;INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (1, 0, 'enabled', 'b', 'false');
task-0: (process:37045): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37045): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-906724917
task-0: (process:37045): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-3894353864983314432 (0x2aa477e20b0)
task-0: (process:37045): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37045): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa477dec70
task-0: (process:37045): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa477e20b0
task-0: ** (process:37022): DEBUG: Starting test test_manager_enabled_event
task-0: (process:37022): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:37022): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37022): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'maemo', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:37022): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37022): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-882317771
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-3789525971124617216 (0x2aa4bd1a8b0)
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037397810741248-3845077593527156736 (0x2aa4bd1a8b0)
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37022): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37022): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: ** (process:37022): DEBUG: on_enabled_event called (1)
task-0: (process:37022): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37022): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37022): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:37022): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-3894353864983314432 (0x2aa4bd1a8b0)
task-0: (process:37022): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: ** (process:37022): DEBUG: on_enabled_event called (1)
task-0: (process:37022): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37022): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37022): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37022): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17470
task-0: (process:37022): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37022): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a8b0
task-0: (process:37022): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:37062): DEBUG: Starting test test_service_regression
task-0: (process:37062): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37062): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:37062): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37062): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37062): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37062): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37062): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('My test account', 'dummyprovider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'interval', 'i', '30');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'username', 's', '''me@myhome.com''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'check_automatically', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''My test account''');
task-0: (process:37062): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37062): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-930908764
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37062): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037397810741248-3998222696939782144 (0x2aa4bd1a8b0)
task-0: (process:37062): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37062): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37062): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-3998222696939782144 (0x2aa4bd1a8b0)
task-0: (process:37062): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037397810741248-3998222696939782144
task-0: ** (process:37062): DEBUG: Service id: 1
task-0: ** (process:37062): DEBUG: Account id: 1
task-0: (process:37062): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37062): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17470
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37062): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a8b0
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37062): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:37062): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37062): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 1
task-0: (process:37062): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17500
task-0: (process:37062): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17500
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37062): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa4bd1a960
task-0: (process:37062): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)

(process:37066): accounts-glib-WARNING **: Unable to load account 1
task-0: ** (process:37066): DEBUG: Starting test test_cache_regression
task-0: (process:37066): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('first_displayname', 'first_provider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''first_displayname''');
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37066): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-952681717
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-4091736818012127232 (0x2aa4bd1a8b0)
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: called: DELETE FROM Accounts WHERE id = 1;DELETE FROM Settings WHERE account = 1;
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37066): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-970156326
task-0: (process:37066): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT name, provider, enabled FROM Accounts WHERE id = 1
task-0: (process:37066): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17500
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('second_displayname', 'second_provider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''second_displayname''');
task-0: (process:37066): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37066): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241538-971630701
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037397810741248-4166789692177514496 (0x2aa4bd1a8b0)
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37066): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37066): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 1 AND service = 0
task-0: (process:37066): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37066): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17590
task-0: (process:37066): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17590
task-0: ** (process:37070): DEBUG: Starting test test_serviceid_regression
task-0: (process:37070): accounts-glib-DEBUG: open_db: DB version: 0
task-0: (process:37070): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37070): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37070): accounts-glib-DEBUG: _ag_service_load_from_file: Loading service MyService
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name group
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_xml_parse_settings: found name setting
task-0: (process:37070): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: INSERT INTO Services (name, display, provider, type) VALUES ('MyService', 'My Service', 'maemo', 'e-mail');
task-0: (process:37070): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id FROM Services WHERE name = 'MyService'
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37070): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'first_provider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37070): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-8371576
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037402105708544-35955645135978496 (0x2aa4bd1a8b0)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037402105708544-35955645135978496 (0x2aa4bd1a960)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-35955645135978496 (0x2aa4bd1a8b0)
task-0: (process:37070): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037402105708544-35955645135978496
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-35955645135978496 (0x2aa4bd1a960)
task-0: (process:37070): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037402105708544-35955645135978496
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'first_provider', 0);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'false');
task-0: (process:37070): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37070): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-10052898
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037402105708544-43176868140023808 (0x2aa4bd1a8b0)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037402105708544-43176868140023808 (0x2aa4bd1a960)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37070): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-43176868140023808 (0x2aa4bd1a8b0)
task-0: (process:37070): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037402105708544-43176868140023808
task-0: (process:37070): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-43176868140023808 (0x2aa4bd1a960)
task-0: (process:37070): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037402105708544-43176868140023808
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37070): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37070): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17470
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37070): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17500
task-0: (process:37070): accounts-glib-DEBUG: account_weak_notify: called for 0x2aa4bd17500
task-0: (process:37070): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: ** (process:37074): DEBUG: Starting test test_enabled_regression
task-0: (process:37074): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37074): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-13680459
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: called: UPDATE Accounts SET  enabled = 0 WHERE id = 3;INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (3, 0, 'enabled', 'b', 'false');
task-0: (process:37074): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37074): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-15246211
task-0: ** (process:37078): DEBUG: Starting test test_delete_regression
task-0: (process:37078): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37078): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES (NULL, 'dummyprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37078): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-18873218
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037402105708544-81059854080278528 (0x2aa4bd1a8b0)
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-81059854080278528 (0x2aa4bd1a8b0)
task-0: (process:37078): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037402105708544-81059854080278528
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (4)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (5)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (6)
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: called: DELETE FROM Accounts WHERE id = 4;DELETE FROM Settings WHERE account = 4;
task-0: (process:37078): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37078): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241539-20628825
task-0: (process:37078): accounts-glib-DEBUG: on_account_enabled: service: (null), enabled: 0
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037402105708544-88600128729907200 (0x2aa4bd1a8b0)
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37078): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37078): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT key, type, value FROM Settings WHERE account = 4 AND service = 0
task-0: (process:37078): accounts-glib-DEBUG: ag_account_service_dispose: Disposing account-service 0x2aa4bd522b0
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (5)
task-0: (process:37078): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa4bd17470
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37078): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37090): accounts-glib-DEBUG: open_db: DB version: 1
task-0: (process:37090): accounts-glib-DEBUG: _ag_manager_exec_query: about to run:
task-0: SELECT id, display, provider, type FROM Services WHERE name = 'MyService'
task-0: (process:37090): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37090): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37090): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37090): accounts-glib-DEBUG: exec_transaction: Accounts DB is now locked
task-0: (process:37090): accounts-glib-DEBUG: exec_transaction: called: INSERT INTO Accounts (name, provider, enabled) VALUES ('MyAccountName', 'myprovider', 1);SELECT set_last_rowid_as_account_id();INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'unsigned', 'u', '54321');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'boolean', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'character', 'i', '122');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 1, 'enabled', 'b', 'true');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'integer', 'i', '-12345');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'string', 's', '''a string''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'name', 's', '''MyAccountName''');INSERT OR REPLACE INTO Settings (account, service,key, type, value) VALUES (account_id(), 0, 'enabled', 'b', 'true');
task-0: (process:37090): accounts-glib-DEBUG: exec_transaction: Accounts DB is now unlocked
task-0: (process:37090): accounts-glib-DEBUG: signal_account_changes: Emitted signal, time: 241540-874385894
task-0: (process:37090): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37090): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037406400675840-3755458818813722624 (0x2aa3a67e0b0)
task-0: (process:37090): accounts-glib-DEBUG: dbus_filter_callback: Marking pending signal for processing
task-0: (process:37090): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (3)
task-0: (process:37090): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (4)
task-0: (process:37090): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37090): accounts-glib-DEBUG: ag_account_dispose: Disposing account 0x2aa3a67ac70
task-0: (process:37090): accounts-glib-DEBUG: ag_manager_dispose: Disposing manager 0x2aa3a67e0b0
task-0: (process:37090): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (2)
task-0: (process:37090): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (1)
task-0: ** (process:37086): DEBUG: Starting test test_db_access
task-0: (process:37086): accounts-glib-DEBUG: open_db: DB version: 1
task-0: ** (process:37086): DEBUG: Running loop
task-0: (process:37086): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/e_2dmail, time = 1037406400675840-3755458818813722624 (0x2aa4bd1a8b0)
task-0: (process:37086): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (1)
task-0: (process:37086): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37086): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: ** (process:37086): DEBUG: on_account_created_with_db_locked called (6)
task-0: ** (process:37086): DEBUG: account loaded
task-0: (process:37086): accounts-glib-DEBUG: ag_service_ref: Referencing service MyService (2)
task-0: (process:37086): accounts-glib-DEBUG: ag_service_unref: Unreferencing service MyService (3)
task-0: (process:37086): accounts-glib-DEBUG: dbus_filter_callback: path = /ServiceType/global, time = 1037406400675840-3755458818813722624 (0x2aa4bd1a8b0)
task-0: (process:37086): accounts-glib-DEBUG: check_signal_processed: Signal already processed: 1037406400675840-3755458818813722624
task-0: 88%: Checks: 44, Failures: 5, Errors: 0
task-0: check_ag.c:291:F:Create:test_read_only:0: Assertion '!ok' failed
task-0: check_ag.c:664:F:Store:test_store_read_only:0: Assertion 'store_data.called' failed
task-0: check_ag.c:1219:F:AccountService:test_account_service_list:0: Got list length 3, expecting 2
task-0: check_ag.c:2620:F:Signalling:test_watches:0: Callback invoked twice!
task-0: check_ag.c:3462:F:Regression:test_duplicate_create_regression:0: account-created emitted 2 times!
task-0: Exited with status 256
task-0: Shutting down
DBus daemon: Shutdown
FAIL accounts-glib-test.sh (exit status: 255)

============================================================================
Testsuite summary for libaccounts-glib 1.19
============================================================================
# TOTAL: 2
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  1
# XPASS: 0
# ERROR: 0
============================================================================
See tests/test-suite.log
Please report to https://gitlab.com/accounts-sso/libaccounts-glib/issues
============================================================================
Makefile:1035: recipe for target 'test-suite.log' failed
make[6]: *** [test-suite.log] Error 1
make[6]: Leaving directory '/root/s390-tests/tests'
Makefile:1141: recipe for target 'check-TESTS' failed
make[5]: *** [check-TESTS] Error 2
make[5]: Leaving directory '/root/s390-tests/tests'
Makefile:1221: recipe for target 'check-am' failed
make[4]: *** [check-am] Error 2
make[4]: Leaving directory '/root/s390-tests/tests'
Makefile:1225: recipe for target 'check' failed
make[3]: *** [check] Error 2
make[3]: Leaving directory '/root/s390-tests/tests'
Makefile:556: recipe for target 'check-recursive' failed
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory '/root/s390-tests'
dh_auto_test: make -j1 check returned exit code 2
debian/rules:30: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 2
make[1]: Leaving directory '/root/s390-tests'
debian/rules:35: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Download as text