Initial commit
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@47 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
248f62cb17
commit
0b9d261d9b
13 changed files with 2049 additions and 0 deletions
32
tools/RegressionTest2/Test.cpp
Normal file
32
tools/RegressionTest2/Test.cpp
Normal file
|
@ -0,0 +1,32 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Unit Test for Loki
|
||||
//
|
||||
// Copyright Terje Slettebø and Pavel Vozenilek 2002.
|
||||
//
|
||||
// Permission to use, copy, modify, and distribute this software for any
|
||||
// purpose is hereby granted without fee, provided that this copyright and
|
||||
// permissions notice appear in all copies and derivatives.
|
||||
//
|
||||
// This software is provided "as is" without express or implied warranty.
|
||||
//
|
||||
// Last update: September 16, 2002
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef __INTEL_COMPILER
|
||||
# pragma warning(disable: 111 193 304 383 444 981 1418)
|
||||
#endif
|
||||
|
||||
#include "LokiTest.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
LokiTest test;
|
||||
|
||||
const int result=test.result();
|
||||
|
||||
#if __BORLANDC__ || __GNUC__
|
||||
while(true); // Stop console window from closing if run from IDE.
|
||||
#endif
|
||||
|
||||
return result;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue