8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / sendmail / libsm / t-smstdio.c
blob6a555cdf5776e399fc5b544e6948eec4bb76bf3b
1 /*
2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 */
10 #pragma ident "%Z%%M% %I% %E% SMI"
12 #include <sm/gen.h>
13 SM_IDSTR(id, "@(#)$Id: t-smstdio.c,v 1.9 2001/03/21 18:30:41 ca Exp $")
15 #include <sm/io.h>
16 #include <sm/string.h>
17 #include <sm/test.h>
19 int
20 main(argc, argv)
21 int argc;
22 char **argv;
24 FILE *stream;
25 SM_FILE_T *fp;
26 char buf[128];
27 size_t n;
28 static char testmsg[] = "hello, world\n";
30 sm_test_begin(argc, argv,
31 "test sm_io_stdioopen, smiostdin, smiostdout");
33 stream = fopen("t-smstdio.1", "w");
34 SM_TEST(stream != NULL);
36 fp = sm_io_stdioopen(stream, "w");
37 SM_TEST(fp != NULL);
39 (void) sm_io_fprintf(fp, SM_TIME_DEFAULT, "%s", testmsg);
40 sm_io_close(fp, SM_TIME_DEFAULT);
42 #if 0
44 ** stream should now be closed. This is a tricky way to test
45 ** if it is still open. Alas, it core dumps on Linux.
48 fprintf(stream, "oops! stream is still open!\n");
49 fclose(stream);
50 #endif
52 stream = fopen("t-smstdio.1", "r");
53 SM_TEST(stream != NULL);
55 fp = sm_io_stdioopen(stream, "r");
56 SM_TEST(fp != NULL);
58 n = sm_io_read(fp, SM_TIME_DEFAULT, buf, sizeof(buf));
59 if (SM_TEST(n == strlen(testmsg)))
61 buf[n] = '\0';
62 SM_TEST(strcmp(buf, testmsg) == 0);
65 #if 0
68 ** Copy smiostdin to smiostdout
69 ** gotta think some more about how to test smiostdin and smiostdout
72 while ((c = sm_io_getc(smiostdin)) != SM_IO_EOF)
73 sm_io_putc(smiostdout, c);
74 #endif
76 return sm_test_end();