~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to akonadi/tests/benchmarker/maketest.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "test.h"
22
22
 
23
 
#include "../dbusconnectionpool.h"
 
23
#include "../../dbusconnectionpool.h"
24
24
 
25
25
#include <akonadi/agentinstancecreatejob.h>
26
26
#include <akonadi/collectiondeletejob.h>
49
49
  job->exec();
50
50
  currentInstance = job->instance();
51
51
 
52
 
  if( job->error() || !currentInstance.isValid() ) {
 
52
  if ( job->error() || !currentInstance.isValid() ) {
53
53
    qDebug() << "  Unable to create resource" << name;
54
54
    exit( -1 );
55
55
  }
67
67
  configIface->call( "setPath", dir );
68
68
  configIface->call( "setReadOnly", true );
69
69
 
70
 
  if( !configIface->isValid())
 
70
  if ( !configIface->isValid())
71
71
    qFatal( "Could not configure instance %s.", qPrintable( currentInstance.identifier() ) );
72
72
}
73
73