Example #1
0
static void Test1()
{
   static long Table0[10] = {
      826837439, 1433481918, 1807203728, 1251143873,
      498964889,886423565,167672701, 1728315981,248403305,1037767977
   };
   static long Table1[10] = {
      269167349, 1677366103,1597714250, 970290675,
      436236141, 2108708678, 89648197, 1313827126, 514978688, 628812726
   };
   Test11(0,Table0);
   Test11(1,Table1);
   Test11(0,Table0);
}
Example #2
0
// constructor
Test::Test()
{
    Test1();
    Test2();
    Test3();
    Test4();
    Test5();
    Test6();
    Test7();
    Test8();
    Test9();
    Test10();
    Test11();
}
Example #3
0
int _tmain(int argc, _TCHAR* argv[])
{
    Test1();
    Test2();
    Test3();
    Test4();
    Test5();
    Test6();
    Test7();
    Test8();
    Test9();
    Test10();
    Test11();

    return 0;
}
Example #4
0
File: main.c Project: taysom/tau
int main(int argc, char *argv[]) {
	Print = false;
	offDump();
	offNode();
	if (true) Test1();
	if (true) Test2();
	if (true) Test3();
	if (true) Test4();
	if (true) Test5();
	if (true) Test6();
	if (true) Test7();
	if (true) Test8();
	if (true) Test9();
	if (true) Test10();
	if (true) Test11();
	if (true) Test12();
	if (true) Test13();
	if (true) Test14();
	if (true) Test15();
	return 0;
}
Example #5
0
GLDEF_C void TestTDes<T,S,L,R>::test_TBuf()
//
// Test the TBuf class special member functions
//
	{

	test.Start(_L("TBuf default view, no params"));
	Test7();
	test.Next(_L("TBuf view with a length"));
	Test8();
	test.Next(_L("TBuf view over a string"));
	Test9();
	test.Next(_L("TBuf view over a descriptor"));
	Test10();
	test.Next(_L("TBuf view over a buffer"));
	Test11();
	test.Next(_L("String assignment"));
	TestD();
	test.Next(_L("Descriptor assignment"));
	TestE();
	test.Next(_L("Buffer assignment"));
	TestF();
	}
Example #6
0
bool
TestDataStructuresChild::RecvStart()
{
    puts("[TestDataStructuresChild] starting");

    Test1();
    Test2();
    Test3();
    Test4();
    Test5();
    Test6();
    Test7_0();
    Test7();
    Test8();
    Test9();
    Test10();
    Test11();
    Test12();
    Test13();
    Test14();
    Test15();
    Test16();
    Test17();
    if (OtherProcess() != 0) {
        //FIXME/bug 703317 allocation of nsIntRegion uses a global
        //region pool which breaks threads
        Test18();
    }

    for (uint32_t i = 0; i < nactors; ++i)
        if (!PTestDataStructuresSubChild::Send__delete__(mKids[i]))
            fail("can't send dtor");

    Close();

    return true;
}