summaryrefslogtreecommitdiffstats
path: root/server/tests/test_display_no_ssl.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing license headersChristophe Fergeau2015-10-191-0/+17
|
* Adjust to new SpiceImageCompress nameChristophe Fergeau2015-07-291-1/+1
| | | | | | | | This has been renamed to SpiceImageCompression in order to avoid clashes with older spice-server in the SPICE_IMAGE_COMPRESS_ namespace. This commit is a straight rename of SpiceImageCompress to SpiceImageCompression and SPICE_IMAGE_COMPRESS_ to SPICE_IMAGE_COMPRESSION_
* Fix -Wunused-parameterFabiano Fidêncio2014-09-121-1/+1
|
* server/tests: agent mock, client_monitors_configAlon Levy2012-09-131-0/+1
|
* server/tests: introduce Test structAlon Levy2012-09-021-4/+5
|
* Add missing includes of config.hDaniel P. Berrange2012-01-131-0/+1
| | | | Not all files were including config.h
* 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: split test_display_no_ssl to test_display_base, add streaming testAlon Levy2011-01-101-585/+22
|
* server/tests/test_display_no_ssl: add update_area, COPY_BITS to tested ↵Alon Levy2011-01-101-29/+163
| | | | functions, make a queue of QXLCommandExt waiting (cursor still with production at get_command)
* server/tests/test_display_no_ssl: add surface create/destroy test (commented ↵Alon Levy2011-01-101-20/+145
| | | | out), and square mode (default)
* server/tests/test_display_no_ssl: change color every circleAlon Levy2011-01-101-9/+14
|
* server/tests/test_display_no_ssl: restart notify timerAlon Levy2011-01-101-1/+1
|
* server/tests/test_display_no_ssl: disable cursor test until it works correctlyAlon Levy2011-01-101-2/+2
|
* server/test/test_display_no_ssl: add beginning of basic cursor item test. ↵Alon Levy2011-01-101-6/+67
| | | | doesn't actually show anything on client. also, leaks.
* server/tests/test_display_no_ssl: make window 320x320, two colored updates, ↵Alon Levy2011-01-101-5/+5
| | | | one in notify batch
* server/tests: add test_display_no_sslAlon Levy2010-11-301-0/+291
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)