Show
Ignore:
Timestamp:
07/31/09 08:38:18 (15 years ago)
Author:
vbarta
Message:

custom test location for harness tests (extended UnitTest?++), configurable tolerance - all tests pass (most of the time)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/mat_checks.cpp

    r428 r456  
    3737 
    3838} 
     39 
     40const char *CurrentContext::config_name = "???"; 
     41 
     42int CurrentContext::index = -1; 
     43 
     44CurrentContext::CurrentContext(const char *name, int idx) 
     45{ 
     46    config_name = name; 
     47    index = idx; 
     48} 
     49 
     50CurrentContext::~CurrentContext() 
     51{ 
     52    config_name = "???"; 
     53    index = -1; 
     54}