summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/fflush/test1/test1.cpp
blob: 7baf9ba5b971374639a3fc2668df10dd1cd1ed4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*============================================================================
**
** Source:  test1.c
**
** Purpose: Tests to see that fflush is working properly.  Flushes a couple
** buffers and checks the return value.  Can't figure out a way to test
** and ensure it is really dropping the buffers, since the system
** does this automatically most of the time ...
**
**
**==========================================================================*/

/* This function is really tough to test.  Right now it just tests 
   a bunch of return values.  No solid way to ensure that it is really
   flushing a buffer or not -- might have to be a manual test someday.
*/

#include <palsuite.h>


int __cdecl main(int argc, char **argv)
{
    
    int TheReturn;
    FILE* TheFile; 
    FILE* AnotherFile = NULL;
  
    PAL_Initialize(argc,argv);
     
    TheFile = fopen("theFile","w+");

    if(TheFile == NULL) 
    {
        Fail("ERROR: fopen failed.  Test depends on this function.");
    }
    
    TheReturn = fwrite("foo",3,3,TheFile);
    
    if(TheReturn != 3) 
    {
        Fail("ERROR: fwrite failed.  Test depends on this function.");
    }
  
    /* Test to see that FlushFileBuffers returns a success value */
    TheReturn = fflush(TheFile);

    if(TheReturn != 0) 
    {
        Fail("ERROR: The fflush function returned non-zero, which "
               "indicates failure, when trying to flush a buffer.");
    }

    /* Test to see that FlushFileBuffers returns a success value */
    TheReturn = fflush(NULL);

    if(TheReturn != 0) 
    {
        Fail("ERROR: The fflush function returned non-zero, which "
               "indicates failure, when trying to flush all buffers.");
    }

    /* Test to see that FlushFileBuffers returns a success value */
    TheReturn = fflush(AnotherFile);

    if(TheReturn != 0) 
    {
        Fail("ERROR: The fflush function returned non-zero, which "
               "indicates failure, when trying to flush a stream not "
               "associated with a file.");
    }
  
    PAL_Terminate();
    return PASS;
}