mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
Merge branch '0.9.2' of ssh://ogl-math.git.sourceforge.net/gitroot/ogl-math/ogl-math into 0.9.2
This commit is contained in:
commit
5e859c8a0e
@ -1,6 +1,6 @@
|
|||||||
function(glmCreateTestGTC NAME)
|
function(glmCreateTestGTC NAME)
|
||||||
set(SAMPLE_NAME test-${NAME})
|
set(SAMPLE_NAME test-${NAME})
|
||||||
add_executable(${SAMPLE_NAME} ${NAME}.cpp ../test.hpp ../test.cpp)
|
add_executable(${SAMPLE_NAME} ${NAME}.cpp)
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME ${SAMPLE_NAME}
|
NAME ${SAMPLE_NAME}
|
||||||
|
@ -1,38 +0,0 @@
|
|||||||
#ifndef glm_test_included
|
|
||||||
#define glm_test_included
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
namespace glm{
|
|
||||||
namespace test
|
|
||||||
{
|
|
||||||
class test
|
|
||||||
{
|
|
||||||
enum result
|
|
||||||
{
|
|
||||||
PASSED,
|
|
||||||
FAILED,
|
|
||||||
ASSERT,
|
|
||||||
STATIC,
|
|
||||||
MAX
|
|
||||||
};
|
|
||||||
|
|
||||||
public:
|
|
||||||
test(std::string const & Name, std::size_t const & Count);
|
|
||||||
result & operator[](std::size_t const & Index);
|
|
||||||
result const & operator[](std::size_t const & Index) const;
|
|
||||||
|
|
||||||
static int get(result const Result) const;
|
|
||||||
static void log(test const & Test);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
std::string Name;
|
|
||||||
std::vertor<result> Tests;
|
|
||||||
|
|
||||||
static test Result[MAX];
|
|
||||||
};
|
|
||||||
|
|
||||||
}//namespace test
|
|
||||||
}//namespace glm
|
|
||||||
|
|
||||||
#endif//glm_test_included
|
|
Loading…
Reference in New Issue
Block a user