summaryrefslogtreecommitdiffstats
path: root/server/tests/test_empty_success.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing license headersChristophe Fergeau2015-10-191-0/+17
|
* Fix -Wunused-parameterFabiano Fidêncio2014-09-121-8/+15
|
* server/tests: fix timer for test_empty_successUri Lublin2013-07-161-1/+9
|
* Remove all usages of bzero()Dan McGee2012-02-141-2/+2
| | | | | | As recommended by modern C practice, we should just be using memset(). Signed-off-by: Dan McGee <dpmcgee@gmail.com>
* server/tests/test_empty_success: fix warning on bzeroAlon Levy2012-01-231-0/+2
| | | | Signed-off-by: Alon Levy <alevy@redhat.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]
* tests: fix compilation with -Wall -WerrorChristophe Fergeau2011-04-081-0/+3
| | | | | | 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: add basic tests with working do nothing serverAlon Levy2010-11-081-0/+57