コード例 #1
0
ファイル: test.c プロジェクト: Obsidian-StudiosInc/jem
int main(int argc, char **argv) {

    fprintf(stdout,"\n\\********** Starting jem tests **********\\\n\n");

    testOutputFormatter();
    testFileParser();
    testPackage();
    testVM();
    testEnvManager();

    fprintf(stdout,"\n\\********** Finished jem tests **********\\\n\n");

    exit(EXIT_SUCCESS);
}
コード例 #2
0
ファイル: ceptr_specs.c プロジェクト: ChunHungLiu/ceptr
int main(int argc, const char **argv) {
    printf("Running all tests...\n\n");

    //**** core tests
    testTree();
    testParse();
    testDef();
    testWord();
    testFlow();
    testVM();


    testStack();
    testInit();
    testCommand();
    testConversation();
    testScape();


//    testThreads();

    //**** builtins tests
    testNoun();
    testPattern();
    //testArray();
    //    testStream();
    testInt();
    testStr255();
    testCfunc();
    testReceptorUtil();
    //    testReceptor();
    //testVmHost();

    //**** examples test
    testPoint();
    //    testLine();


    report_tests();
    return 0;
}