summaryrefslogtreecommitdiffstats
path: root/server/tests/test_display_base.c
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2012-05-02 13:39:04 +0300
committerYonit Halperin <yhalperi@redhat.com>2012-05-03 13:09:53 +0300
commita267a4b31516a2347ec2c8413e3f59dcdbd1363a (patch)
tree174e250f274217f1e06c1934591e80d027ef264b /server/tests/test_display_base.c
parentbccf5bc35a7b96d523b0537be133f0ada8cffa36 (diff)
downloadspice-a267a4b31516a2347ec2c8413e3f59dcdbd1363a.tar.gz
spice-a267a4b31516a2347ec2c8413e3f59dcdbd1363a.tar.xz
spice-a267a4b31516a2347ec2c8413e3f59dcdbd1363a.zip
server/tests: add SLEEP command to test_display_base
Diffstat (limited to 'server/tests/test_display_base.c')
-rw-r--r--server/tests/test_display_base.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/tests/test_display_base.c b/server/tests/test_display_base.c
index f4127512..1c293f4c 100644
--- a/server/tests/test_display_base.c
+++ b/server/tests/test_display_base.c
@@ -498,6 +498,10 @@ static void produce_command(void)
command->cb(command);
}
switch (command->command) {
+ case SLEEP:
+ printf("sleep %u seconds\n", command->sleep.secs);
+ sleep(command->sleep.secs);
+ break;
case PATH_PROGRESS:
path_progress(&path);
break;