summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/typetest.cpp
blob: e0399b56ba57f148a22798288d4a145fa210d34d (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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

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

#include <cstdlib>

class TypeTest : public BaseTest
{
private:
   void PrintfSpecifiersTest ()
   {
      char testBuf[200];
      const char *correct;

      TestHeader("64-bit printf-specifiers test");

      sprintf(testBuf, "%" PRId64, int64_t(-1000)*1000*1000*1000*1000);
      correct = "-1000000000000000";
      Progress(strcmp(testBuf, correct) == 0,
               "Generated=[%s], Correct=[%s]", testBuf, correct);

      sprintf(testBuf, "%" PRIu64, uint64_t(1000)*1000*1000*1000*1000);
      correct = "1000000000000000";
      Progress(strcmp(testBuf, correct) == 0,
               "Generated=[%s], Correct=[%s]", testBuf, correct);

      sprintf(testBuf, "%" PRIo64, uint64_t(1000)*1000*1000*1000*1000);
      correct = "34327724461500000";
      Progress(strcmp(testBuf, correct) == 0,
               "Generated=[%s], Correct=[%s]", testBuf, correct);

      sprintf(testBuf, "%" PRIx64, uint64_t(1000)*1000*1000*1000*1000);
      correct = "38d7ea4c68000";
      Progress(strcmp(testBuf, correct) == 0,
               "Generated=[%s], Correct=[%s]", testBuf, correct);

      sprintf(testBuf, "%" PRIX64, uint64_t(1000)*1000*1000*1000*1000);
      correct = "38D7EA4C68000";
      Progress(strcmp(testBuf, correct) == 0,
               "Generated=[%s], Correct=[%s]", testBuf, correct);

      PrintSeparator();
   }

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

      Progress(true, "FastOS_Application:  %d", sizeof(FastOS_Application));
      Progress(true, "FastOS_BoolCond      %d", sizeof(FastOS_BoolCond));
      Progress(true, "FastOS_Cond          %d", sizeof(FastOS_Cond));
      Progress(true, "FastOS_DirectoryScan %d", sizeof(FastOS_DirectoryScan));
      Progress(true, "FastOS_File:         %d", sizeof(FastOS_File));
      Progress(true, "FastOS_Mutex:        %d", sizeof(FastOS_Mutex));
      Progress(true, "FastOS_Runnable      %d", sizeof(FastOS_Runnable));
      Progress(true, "FastOS_ServerSocket  %d", sizeof(FastOS_ServerSocket));
      Progress(true, "FastOS_Socket:       %d", sizeof(FastOS_Socket));
      Progress(true, "FastOS_SocketFactory %d", sizeof(FastOS_SocketFactory));
      Progress(true, "FastOS_StatInfo      %d", sizeof(FastOS_StatInfo));
      Progress(true, "FastOS_Thread:       %d", sizeof(FastOS_Thread));
      Progress(true, "FastOS_ThreadPool:   %d", sizeof(FastOS_ThreadPool));
      Progress(true, "FastOS_Time          %d", sizeof(FastOS_Time));

      PrintSeparator();
   }

public:
   virtual ~TypeTest() {};

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

      PrintfSpecifiersTest();
      ObjectSizeTest();

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

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


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