summaryrefslogtreecommitdiffstats
path: root/server/tests/test_util.h
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-03-08 21:17:56 +0200
committerAlon Levy <alevy@redhat.com>2011-03-22 09:44:52 +0200
commit02c3f54deb780d01f89edd52a2be05cdaa3556a8 (patch)
tree84f99a78602fbfc3d3f51824d37da2d8042b77e6 /server/tests/test_util.h
parent5fc7fb68aebb884c4a99e85c71ffd88e119c73dc (diff)
downloadspice-02c3f54deb780d01f89edd52a2be05cdaa3556a8.tar.gz
spice-02c3f54deb780d01f89edd52a2be05cdaa3556a8.tar.xz
spice-02c3f54deb780d01f89edd52a2be05cdaa3556a8.zip
server/tests: add test_playback
Diffstat (limited to 'server/tests/test_util.h')
-rw-r--r--server/tests/test_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/tests/test_util.h b/server/tests/test_util.h
index ac1442dd..5344a4f0 100644
--- a/server/tests/test_util.h
+++ b/server/tests/test_util.h
@@ -9,4 +9,6 @@
abort(); \
}
+#define MIN(a,b) ((a) > (b) ? (b) : (a))
+
#endif // __TEST_UTIL_H__