mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-03 15:24:15 +01:00
27066fbb99
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40511
110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
// Hello BAIL!
|
|
// hello pm how are you
|
|
// I'm fine, what about you?
|
|
// not bad, just looking for mem leaks
|
|
// mem leaks in my code!? never! I have to preserve binary compatibility :(
|
|
// This is a test file
|
|
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include "sourcehook_impl.h"
|
|
#include "sourcehook.h"
|
|
|
|
using namespace std;
|
|
bool g_Verbose;
|
|
|
|
#define DECL_TEST(x) bool Test##x(std::string &error);
|
|
|
|
#define DO_TEST(x) \
|
|
error.clear(); \
|
|
if (Test##x(error)) \
|
|
{ \
|
|
++passed; \
|
|
cout << "Test" << #x << " passed" << endl; \
|
|
} \
|
|
else \
|
|
{ \
|
|
++failed; \
|
|
cout << "Test" << #x << " FAILED: " << error << endl; \
|
|
} \
|
|
|
|
|
|
DECL_TEST(List);
|
|
DECL_TEST(Basic);
|
|
DECL_TEST(VafmtAndOverload);
|
|
DECL_TEST(ThisPtrOffs);
|
|
DECL_TEST(PlugSys);
|
|
DECL_TEST(Bail);
|
|
DECL_TEST(Reentr);
|
|
DECL_TEST(Manual);
|
|
DECL_TEST(Recall);
|
|
DECL_TEST(Multi);
|
|
DECL_TEST(Ref);
|
|
DECL_TEST(RefRet);
|
|
DECL_TEST(VPHooks);
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::string error;
|
|
|
|
g_Verbose = argc > 1 && strcmp(argv[1], "-v") == 0;
|
|
|
|
int passed = 0, failed = 0;
|
|
|
|
DO_TEST(List);
|
|
DO_TEST(Basic);
|
|
DO_TEST(VafmtAndOverload);
|
|
DO_TEST(ThisPtrOffs);
|
|
DO_TEST(PlugSys);
|
|
DO_TEST(Bail);
|
|
DO_TEST(Reentr);
|
|
DO_TEST(Manual);
|
|
DO_TEST(Recall);
|
|
DO_TEST(Multi);
|
|
DO_TEST(Ref);
|
|
DO_TEST(RefRet);
|
|
DO_TEST(VPHooks);
|
|
|
|
cout << endl << "----" << endl << "Passed: " << passed << endl << "Failed: " << failed << endl;
|
|
cout << "Total: " << passed + failed << endl;
|
|
|
|
cout << "Press enter to continue" << endl;
|
|
|
|
char x;
|
|
cin.read(&x, 1);
|
|
}
|
|
|
|
SourceHook::ISourceHook *Test_Factory()
|
|
{
|
|
return new SourceHook::Impl::CSourceHookImpl();
|
|
}
|
|
|
|
void Test_Delete(SourceHook::ISourceHook *shptr)
|
|
{
|
|
delete static_cast<SourceHook::Impl::CSourceHookImpl *>(shptr);
|
|
}
|
|
|
|
void Test_CompleteShutdown(SourceHook::ISourceHook *shptr)
|
|
{
|
|
static_cast<SourceHook::Impl::CSourceHookImpl *>(shptr)->CompleteShutdown();
|
|
}
|
|
|
|
void Test_UnloadPlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug)
|
|
{
|
|
static_cast<SourceHook::Impl::CSourceHookImpl *>(shptr)->UnloadPlugin(plug);
|
|
}
|
|
|
|
void Test_PausePlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug)
|
|
{
|
|
static_cast<SourceHook::Impl::CSourceHookImpl *>(shptr)->PausePlugin(plug);
|
|
}
|
|
|
|
void Test_UnpausePlugin(SourceHook::ISourceHook *shptr, SourceHook::Plugin plug)
|
|
{
|
|
static_cast<SourceHook::Impl::CSourceHookImpl *>(shptr)->UnpausePlugin(plug);
|
|
}
|