Files
Fletcher Dunn 62f86f63b3 test_p2p can now adjust the spew level
We'll want CI to print detailed info to stdio
2026-04-20 22:18:50 -07:00

33 lines
1000 B
C++

// Misc stuff used in the tests
#pragma once
// Include a bunch of common headers, especially the ones that will configure
// Visual Studio memory allocation and check the _DEBUG flag. We are
// about to slam that flag to force assert to be enabled below.
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <string>
// Force asserts to be enabled, even in release build
#undef NDEBUG
#ifndef _DEBUG
#define _DEBUG
#endif
#include <assert.h>
#include <steam/steamnetworkingtypes.h>
struct SteamNetworkingIdentity;
extern ESteamNetworkingSocketsDebugOutputType g_eTestStdoutDetailLevel;
extern void TEST_InitLog( const char *pszFilename );
extern void TEST_SetStdoutDetailLevel( ESteamNetworkingSocketsDebugOutputType eDetailLevel );
extern void TEST_Printf( const char *fmt, ... );
extern void TEST_Fatal( const char *fmt, ... );
extern void TEST_Init( const SteamNetworkingIdentity *pIdentity );
extern void TEST_Kill();
extern void TEST_PumpCallbacks();