Skip to content

Commit

Permalink
no go
Browse files Browse the repository at this point in the history
  • Loading branch information
webern committed Feb 6, 2020
1 parent 2b557dd commit b36e91c
Show file tree
Hide file tree
Showing 8 changed files with 17,632 additions and 6 deletions.
17,615 changes: 17,615 additions & 0 deletions Sourcecode/private/cpul/catch.h

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Sourcecode/private/cpul/catchDefines.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#pragma once

#include "cpul/catch.h"

#define TEST( a, b ) TEST_CASE( a, b )
1 change: 0 additions & 1 deletion Sourcecode/private/cpul/cpulDefines.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#pragma once


#define PRIVATE_UNUSED_PARAMETER_STRINGIFY(argument) #argument

#ifndef _MSC_VER
Expand Down
2 changes: 2 additions & 0 deletions Sourcecode/private/cpul/cpulTest.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#if 0
#include "cpul/cpulTest.h"
#include "cpul/cpulTestRegistry.h"
#include "cpul/cpulTestResult.h"
Expand Down Expand Up @@ -84,3 +85,4 @@ bool Test::getDoRunTest() const
return doRunTest;
}

#endif
2 changes: 2 additions & 0 deletions Sourcecode/private/cpul/cpulTest.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#if 0
#ifndef TEST_H
#define TEST_H

Expand Down Expand Up @@ -211,3 +212,4 @@ class Test


#endif
#endif
9 changes: 5 additions & 4 deletions Sourcecode/private/cpul/cpulTestHarness.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

#include "cpul/cpulDefines.h"

#ifdef USE_VS_TEST
#define MX_USE_CATCH2

#ifdef USE_VS_TEST
#include "cpul/cpulVsTest.h"

#elif defined(MX_USE_CATCH2)
#include "cpul/catch.h"
#include "cpul/catchDefines.h"
#else

#include "cpul/cpulTest.h"
#include "cpul/cpulTestResult.h"
#include "cpul/cpulFailure.h"
#include "cpul/cpulTestRegistry.h"

#endif

2 changes: 2 additions & 0 deletions Sourcecode/private/cpul/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#define MX_USE_CATCH2

#include <iostream>
#include "cpul/cpulRun.h"
#include "cpul/cpulTestTimer.h"
Expand Down
2 changes: 1 addition & 1 deletion Sourcecode/private/mxtest/api/RoundTrip.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#pragma once

#include "mxtest/control/CompileControl.h"

#include "mx/api/DocumentManager.h"
#include "mxtest/file/MxFileRepository.h"
#include <sstream>

namespace mxtest
{
Expand Down

0 comments on commit b36e91c

Please sign in to comment.