Changeset 769 for trunk/tools/qtestlib
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/tools/qtestlib/wince/cetest/activesyncconnection.cpp
r651 r769 444 444 } 445 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 446 585 bool ActiveSyncConnection::createDirectory(const QString &path, bool deleteBefore) 447 586 { -
trunk/tools/qtestlib/wince/cetest/activesyncconnection.h
r651 r769 80 80 81 81 bool execute(QString program, QString arguments = QString(), int timeout = -1, int *returnValue = NULL); 82 83 84 82 85 private: 83 86 bool connected; -
trunk/tools/qtestlib/wince/cetest/cetest.pro
r561 r769 20 20 $$QT_SOURCE_TREE/qmake \ 21 21 $$QT_SOURCE_TREE/qmake/generators/symbian \ 22 22 23 $$QT_BUILD_TREE/include \ 23 24 $$QT_BUILD_TREE/include/QtCore \ 24 25 $$QT_BUILD_TREE/src/corelib/global 26 27 25 28 26 29 DEPENDPATH += $$QT_BUILD_TREE/src/corelib/tools $$QT_BUILD_TREE/src/corelib/io … … 34 37 remoteconnection.cpp \ 35 38 deployment.cpp \ 39 40 36 41 main.cpp 37 42 -
trunk/tools/qtestlib/wince/cetest/main.cpp
r651 r769 45 45 # include "activesyncconnection.h" 46 46 #endif 47 48 49 47 50 48 51 #include "deployment.h" … … 124 127 " -release : Test release version\n" 125 128 " -libpath <path> : Remote path to deploy Qt libraries to\n" 129 130 126 131 " -qt-delete : Delete the Qt libraries after execution\n" 127 132 " -project-delete : Delete the project file(s) after execution\n" … … 153 158 bool cleanupQt = false; 154 159 bool cleanupProject = false; 160 161 155 162 156 163 for (int i=1; i<arguments.size(); ++i) { … … 197 204 cleanupQt = true; 198 205 cleanupProject = true; 206 207 208 209 199 210 } else if (arguments.at(i).toLower() == QLatin1String("-conf")) { 200 211 if (++i == arguments.size()) { … … 353 364 cout << "Error: Could not copy file(s) to device" << endl; 354 365 return -1; 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 355 403 } 356 404 -
trunk/tools/qtestlib/wince/cetest/qmake_include.pri
r561 r769 6 6 $$QT_SOURCE_TREE/qmake/project.cpp \ 7 7 $$QT_SOURCE_TREE/qmake/property.cpp \ 8 $$QT_SOURCE_TREE/qmake/generators/symbian/initprojectdeploy_symbian.cpp 8 $$QT_SOURCE_TREE/qmake/generators/symbian/initprojectdeploy_symbian.cpp \ 9 $$QT_SOURCE_TREE/tools/shared/symbian/epocroot.cpp \ 10 $$QT_SOURCE_TREE/tools/shared/windows/registry.cpp 9 11 -
trunk/tools/qtestlib/wince/remotelib/commands.cpp
r651 r769 40 40 ****************************************************************************/ 41 41 #include "commands.h" 42 43 44 42 45 43 46 #define CLEAN_FAIL(a) {delete appName; \ … … 125 128 return true; 126 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 -
trunk/tools/qtestlib/wince/remotelib/commands.h
r651 r769 46 46 extern "C" { 47 47 int __declspec(dllexport) qRemoteLaunch(DWORD, BYTE*, DWORD*, BYTE**, IRAPIStream*); 48 49 50 48 51 bool __declspec(dllexport) qRemoteExecute(const wchar_t* program, const wchar_t* arguments = NULL, int *returnValue = NULL , DWORD* error = NULL, int timeout = -1); 49 52 }
Note:
See TracChangeset
for help on using the changeset viewer.