1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00
freebsd/contrib/sendmail/libsm/t-fopen.c
Gregory Neil Shapiro 5dd76dd0cc Merge sendmail 8.14.8 to HEAD
MFC after:	5 days
2014-01-26 23:39:11 +00:00

39 lines
875 B
C

/*
* Copyright (c) 2000-2002 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*/
#include <sm/gen.h>
SM_IDSTR(id, "@(#)$Id: t-fopen.c,v 1.10 2013/11/22 20:51:43 ca Exp $")
#include <fcntl.h>
#include <sm/io.h>
#include <sm/test.h>
/* ARGSUSED0 */
int
main(argc, argv)
int argc;
char *argv[];
{
int m, r;
SM_FILE_T *out;
sm_test_begin(argc, argv, "test sm_io_fopen");
out = sm_io_fopen("foo", O_WRONLY|O_APPEND|O_CREAT, 0666);
SM_TEST(out != NULL);
if (out != NULL)
{
(void) sm_io_fprintf(out, SM_TIME_DEFAULT, "foo\n");
r = sm_io_getinfo(out, SM_IO_WHAT_MODE, &m);
SM_TEST(r == 0);
SM_TEST(m == SM_IO_WRONLY);
sm_io_close(out, SM_TIME_DEFAULT);
}
return sm_test_end();
}