Linux test merged.

This commit is contained in:
Vahagn Khachatryan
2013-02-22 23:48:24 +04:00
parent 16f2ae5f57
commit a730bde647
16 changed files with 747 additions and 269 deletions

View File

@@ -488,61 +488,46 @@ void testTransform()
<< "<a href=\"#_6\">pod::rectangle&ltdouble&gt</a><br>"
<< "<a href=\"#_7\">trans*trans</a><br>"
<< "<a href=\"#_8\">trans<sup>-1</sup></a><br><br><br>";
#if 0
std::cout << "pod::point<int32>" << std::endl;
out << "<a name=\"#_1\"></a><table border=1><thead><H3>pod::point&ltint32&gt</h3></thead>" << std::endl;
testAllPt<int32,nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "pod::point<int64>" << std::endl;
out << "<a name=\"#_2\"></a><table border=1><thead><H3>pod::point&ltint64&gt</H3></thead>" << std::endl;
testAllPt<int64,nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "pod::point<double>" << std::endl;
out << "<a name=\"#_3\"></a><table border=1><thead><H3>pod::point&ltdouble&gt</H3></thead>" << std::endl;
testAllPt<double,nProbes>();
out << "</table><P>";
#endif
#if 1
std::cout << "pod::rectangle<int32>" << std::endl;
out << "<a name=\"#_4\"></a><table border=1><thead><H3>pod::rectangle&ltint32&gt</H3></thead>" << std::endl;
testAllRect<int32,nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "pod::rectangle<int64>" << std::endl;
out << "<a name=\"#_5\"></a><table border=1><thead><H3>pod::rectangle&ltint64&gt</H3></thead>" << std::endl;
testAllRect<int64,nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "pod::rectangle<double>" << std::endl;
out << "<a name=\"#_6\"></a><table border=1><thead><H3>pod::rectangle&ltdouble&gt</H3></thead>" << std::endl;
testAllRect<double,nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "trans*trans" << std::endl;
out << "<a name=\"#_7\"></a><table border=1><thead><H3>trans*trans</H3></thead>" << std::endl;
testAllTrans1x1<nProbes>();
out << "</table><P>";
#endif
#if 0
std::cout << "inverse trans" << std::endl;
out << "<a name=\"#_8\"></a><table border=1><thead><H3>trans<sup>-1</sup></H3></thead>" << std::endl;
testAllTransInverse<nProbes>();
out << "</table><P>";
#endif
}
void main ( )