aboutsummaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/typetest.cpp
blob: 7871275e17c62c4aa5c83436d06bfd82b82b0527 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "tests.h"
#include <vespa/fastos/file.h>

class TypeTest : public BaseTest
{
private:

   void ObjectSizeTest ()
   {
      TestHeader("Object Sizes (bytes)");

      Progress(true, "FastOS_DirectoryScan %d", sizeof(FastOS_DirectoryScan));
      Progress(true, "FastOS_File:         %d", sizeof(FastOS_File));
      Progress(true, "FastOS_StatInfo      %d", sizeof(FastOS_StatInfo));

      PrintSeparator();
   }

public:
   virtual ~TypeTest() {};

   int Main () override
   {
      printf("grep for the string '%s' to detect failures.\n\n", failString);

      ObjectSizeTest();

      PrintSeparator();
      printf("END OF TEST (%s)\n", _argv[0]);

      return allWasOk() ? 0 : 1;
   }
};


int main (int argc, char **argv)
{
   setvbuf(stdout, nullptr, _IOLBF, 8192);
   TypeTest app;
   return app.Entry(argc, argv);
}