Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #pragma once |
michael@0 | 7 | |
michael@0 | 8 | #include <string> |
michael@0 | 9 | #include <vector> |
michael@0 | 10 | |
michael@0 | 11 | #ifdef _MSC_VER |
michael@0 | 12 | // On MSVC otherwise our generic member pointer trick doesn't work. |
michael@0 | 13 | #pragma pointers_to_members(full_generality, single_inheritance) |
michael@0 | 14 | #endif |
michael@0 | 15 | |
michael@0 | 16 | #define VERIFY(arg) if (!(arg)) { \ |
michael@0 | 17 | LogMessage("VERIFY FAILED: "#arg"\n"); \ |
michael@0 | 18 | mTestFailed = true; \ |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | #define REGISTER_TEST(className, testName) \ |
michael@0 | 22 | mTests.push_back(Test(static_cast<TestCall>(&className::testName), #testName, this)) |
michael@0 | 23 | |
michael@0 | 24 | class TestBase |
michael@0 | 25 | { |
michael@0 | 26 | public: |
michael@0 | 27 | TestBase() {} |
michael@0 | 28 | |
michael@0 | 29 | typedef void (TestBase::*TestCall)(); |
michael@0 | 30 | |
michael@0 | 31 | int RunTests(int *aFailures); |
michael@0 | 32 | |
michael@0 | 33 | protected: |
michael@0 | 34 | static void LogMessage(std::string aMessage); |
michael@0 | 35 | |
michael@0 | 36 | struct Test { |
michael@0 | 37 | Test(TestCall aCall, std::string aName, void *aImplPointer) |
michael@0 | 38 | : funcCall(aCall) |
michael@0 | 39 | , name(aName) |
michael@0 | 40 | , implPointer(aImplPointer) |
michael@0 | 41 | { |
michael@0 | 42 | } |
michael@0 | 43 | TestCall funcCall; |
michael@0 | 44 | std::string name; |
michael@0 | 45 | void *implPointer; |
michael@0 | 46 | }; |
michael@0 | 47 | std::vector<Test> mTests; |
michael@0 | 48 | |
michael@0 | 49 | bool mTestFailed; |
michael@0 | 50 | |
michael@0 | 51 | private: |
michael@0 | 52 | // This doesn't really work with our generic member pointer trick. |
michael@0 | 53 | TestBase(const TestBase &aOther); |
michael@0 | 54 | }; |