aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests/stream/test2.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-03-02 09:33:29 +0800
committernobody <nobody@localhost>2001-03-02 09:33:29 +0800
commit0f0cc6c488ee2ba9a9c4f2d9bfc41996dfedf9fd (patch)
treecda39502324bf50b451e5c7f58e5dee7c7476bad /camel/tests/stream/test2.c
parent50ef074887b43f43dad3edb120d9abf30092c681 (diff)
downloadgsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar.gz
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar.bz2
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar.lz
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar.xz
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.tar.zst
gsoc2013-evolution-GNOME-VFS_1_0_ANCHOR.zip
This commit was manufactured by cvs2svn to create tagGNOME-VFS_1_0_ANCHOR
'GNOME-VFS_1_0_ANCHOR'. svn path=/tags/GNOME-VFS_1_0_ANCHOR/; revision=8487
Diffstat (limited to 'camel/tests/stream/test2.c')
-rw-r--r--camel/tests/stream/test2.c53
1 files changed, 0 insertions, 53 deletions
diff --git a/camel/tests/stream/test2.c b/camel/tests/stream/test2.c
deleted file mode 100644
index 02ad88e95c..0000000000
--- a/camel/tests/stream/test2.c
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- test ... camelstreammem */
-
-#include "camel-test.h"
-#include "streams.h"
-
-#include <errno.h>
-#include <sys/stat.h>
-#include <unistd.h>
-
-#include "camel/camel-stream-mem.h"
-
-int main(int argc, char **argv)
-{
- CamelSeekableStream *ss = NULL;
- int i;
- int fd = -1;
- struct stat st;
- int size;
- char buffer[1024];
- GByteArray *ba;
-
- camel_test_init(argc, argv);
-
- camel_test_start("CamelStream mem, create, seek, read, write, eos");
- for (i=0;i<3;i++) {
-
- push("Creating stream using method %d", i);
- switch(i) {
- case 0:
- ss = (CamelSeekableStream *)camel_stream_mem_new();
- break;
- case 1:
- ba = g_byte_array_new();
- ss = (CamelSeekableStream *)camel_stream_mem_new_with_byte_array(ba);
- break;
- case 2:
- ss = (CamelSeekableStream *)camel_stream_mem_new_with_buffer("", 0);
- break;
- }
- check(ss != NULL);
-
- test_stream_seekable_writepart(ss);
- test_stream_seekable_readpart(ss);
-
- check_unref(ss, 1);
- pull();
- }
-
- camel_test_end();
-
- return 0;
-}