You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/dcop/tests
Michele Calgaro ba3b5b77e1
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
4 months ago
..
CMakeLists.txt cmake: Avoid double generating of dcop/tests files. 5 years ago
Makefile.am Rename additional instances of KDE to TDE 13 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
driver.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 4 months ago
driver.h Replace Q_OBJECT with TQ_OBJECT 9 months ago
generate.pl dcop/tests: run dcop tests in a safer manner 7 years ago
run-tests.sh tests: Wait for the dcop server to be ready. 3 years ago
test.cpp Make dcop tests run without X 7 years ago
testcases Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version 7 months ago

README

WHAT IS IT
==========

This is a test case for the dcop family of utils.


HOW TO USE IT
=============

testcases is the important file, the rest is build system.
It details what functions we should generate and with what arguments to call them

'make'ing will generate a small dcop app which runs in two modes: the batch mode and the
interactive mode. The batch mode simply runs all the tests inside the app, while in the interactive
mode, the app goes to sleep and exactly the same tests are called from the outside. Should the results
differ, we probably have a bug.


HOW IT WORKS
============

Six files get generated:

                             local               external           shell
                       +-------------------+-----------------+-----------------+
                       |                   |                 |                 |
   stdout              |   batch.stdout    |   dcop.stdout   |  shell.stdoud   |
                       |                   |                 |                 |
                       +-------------------+-----------------+-----------------+
                       |                   |                 |                 |
   return values       |   batch.returns   |   dcop.returns  |  shell.returns  |
                       |                   |                 |                 |
                       +-------------------+-----------------+-----------------+

The local column are the files generated in batch mode where the calls are made locally, the external and shell columns lists files made using dcop calls, "external" calls were made through an external program and shell call were made using the dcop shell client. The stdout row is what got printed to stdout and the returns row is what return values the various functions support. These are kept separate to simplify things.