summaryrefslogtreecommitdiffstats
path: root/server/tests/basic_event_loop.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing license headersChristophe Fergeau2015-10-191-0/+17
|
* replay: do not define same type twiceFrediano Ziglio2015-09-011-4/+4
| | | | | | | | | | Avoid to use typedef twice for the same type as some compiler complaints about it. SpiceTimer and SpiceWatch are defined in server/spice-core.h as an abstract type which should be defined by some code (as server/tests/basic_event_loop.c does). Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
* tests: use glib main loopMarc-André Lureau2015-08-201-190/+95
|
* Fix -WformatFabiano Fidêncio2014-09-121-1/+1
|
* server/tests: agent mock, client_monitors_configAlon Levy2012-09-131-1/+1
|
* server/tests/basic_event_loop: print something on channel_eventAlon Levy2012-02-151-1/+2
|
* Remove all usages of bzero()Dan McGee2012-02-141-1/+1
| | | | | | As recommended by modern C practice, we should just be using memset(). Signed-off-by: Dan McGee <dpmcgee@gmail.com>
* Add missing includes of config.hDaniel P. Berrange2012-01-131-0/+1
| | | | Not all files were including config.h
* Remove bogus include of strings.hDaniel P. Berrange2012-01-131-1/+0
| | | | The tests include strings.h but don't need any of its functions
* Remove trailing blank linesDaniel P. Berrange2012-01-131-1/+0
| | | | Remove any blank lines at the end of all source files
* server: fix function prototypesChristophe Fergeau2011-09-051-1/+1
| | | | | | | | Several functions in server/ were not specifying an argument list, ie they were declared as void foo(); When compiling with -Wstrict-prototypes, this leads to: test_playback.c:93:5: erreur: function declaration isn’t a prototype [-Werror=strict-prototypes]
* server/tests/basic_event_loop: multiple fixesAlon Levy2011-08-231-121/+30
| | | | | | reuse common/ring.h ignore SIGPIPE fix handling of removed watches
* server/tests/basic_event_loop: strange assert failure; fixAlon Levy2011-07-051-1/+1
|
* server/tests remove useless assignmentChristophe Fergeau2011-04-081-1/+0
| | | | This was detected by clang-static-analyzer.
* tests: fix compilation with -Wall -WerrorChristophe Fergeau2011-04-081-1/+1
| | | | | | When compiling spice with make CFLAGS="-g3 -ggdb3 -O0 -Wall -Werror", the build broken because of a few unused variables/missing returns. This patch fixes these warnings.
* server/tests/basic_event_loop: fix bzero warningAlon Levy2011-02-111-0/+1
|
* server/tests: fix timer reset to allow setting next call during callbackAlon Levy2011-01-101-1/+1
|
* server/tests: basic_event_loop: reset timer after firing itAlon Levy2011-01-101-0/+1
|
* server/tests: add test_display_no_sslAlon Levy2010-11-301-45/+275
| | | | | | | | | | updates taken from spice vga mode updates, i.e. non cacheable, glz compressed (depends on whatever settings you apply to the server) opaque draw operations. + completed the SpiceCoreInterface implementation (timers) v1->v2: removed test_util.c (Hans) replaced mallocz with calloc (Hans)
* server: tests: add basic tests with working do nothing serverAlon Levy2010-11-081-0/+144