1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00

Added back the forgotten BAIL test

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40473
This commit is contained in:
Pavol Marko 2007-10-08 15:23:08 +00:00
parent d0e26565dd
commit c58727dba5
2 changed files with 1 additions and 3 deletions

View File

@ -73,7 +73,7 @@ DO_TEST(Basic);
DO_TEST(VafmtAndOverload);
DO_TEST(ThisPtrOffs);
DO_TEST(PlugSys);
//DO_TEST(Bail);
DO_TEST(Bail);
DO_TEST(Reentr);
DO_TEST(Manual);
DO_TEST(Recall);

View File

@ -439,7 +439,6 @@ bool TestBasic(std::string &error)
new State_F1_Called,
NULL), "Part 1");
CHECK_COND(SH_GET_ORIG_VFNPTR_ENTRY(pTest, &Test::F1) == pOrigVfnPtrF1, "Part S1");
// 2) Request a call class again
SourceHook::CallClass<Test> *cc2 = SH_GET_CALLCLASS(pTest);
@ -479,7 +478,6 @@ bool TestBasic(std::string &error)
new State_F1_PreHandler_Called(&f1_handlers),
NULL), "Part 3");
CHECK_COND(SH_GET_ORIG_VFNPTR_ENTRY(pTest, &Test::F1) == pOrigVfnPtrF1, "Part S3");
// 4) Rerequest the callclass
SH_RELEASE_CALLCLASS(cc);