summaryrefslogtreecommitdiffstats
path: root/tools/test-server/test-server-diagnostics.cpp
blob: 8fb1f5a432c712e6bf7900132b45b0ff8a40eb32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "test-server-diagnostics.h"

namespace TestServer
{

namespace ServerDiagnostics
{
using namespace Slang;

#define DIAGNOSTIC(id, severity, name, messageFormat) \
    const DiagnosticInfo name = {id, Severity::severity, #name, messageFormat};
#include "test-server-diagnostic-defs.h"
} // namespace ServerDiagnostics

} // namespace TestServer