26 int main (
int, 
const char **)
 
   28   std::cout << std::endl;
 
   29   std::cout << 
"----------------------------------------------" << std::endl;
 
   30   std::cout << 
"----------------------------------------------" << std::endl;
 
   31   std::cout << 
"## Test :: Matrix operations, row-major, integers " << std::endl;
 
   32   std::cout << 
"----------------------------------------------" << std::endl;
 
   33   std::cout << 
"----------------------------------------------" << std::endl;
 
   34   std::cout << std::endl;
 
   36   std::cout << 
"# Testing setup:" << std::endl;
 
   37   std::cout << 
"  numeric: int" << std::endl;
 
   38   std::cout << 
" --- row-major ---" << std::endl;
 
   39   if (run_test<viennacl::row_major, int>() != EXIT_SUCCESS)
 
   42   std::cout << 
"# Testing setup:" << std::endl;
 
   43   std::cout << 
"  numeric: long" << std::endl;
 
   44   std::cout << 
" --- row-major ---" << std::endl;
 
   45   if (run_test<viennacl::row_major, long>() != EXIT_SUCCESS)
 
   48   std::cout << std::endl;
 
   49   std::cout << 
"------- Test completed --------" << std::endl;
 
   50   std::cout << std::endl;
 
int main(int, const char **)