コード例 #1
0
    void run ()
    {
        testVersion ();
        testProtocol ();
        testValues ();

        log <<
            "  Stellar version: " <<
            BuildInfo::getVersionString();
    }
コード例 #2
0
ファイル: BuildInfo.cpp プロジェクト: Cocongo/rippled
    void run ()
    {
        testVersion ();
        testProtocol ();
        testValues ();

        log <<
            "  Ripple version: " <<
            BuildInfo::getVersionString().toStdString();
    }
コード例 #3
0
ファイル: ceptr_specs.c プロジェクト: nwperrin/ceptr
int main(int argc, const char **argv) {
    printf("Running all tests...\n\n");

    int err;
    if ((err = setjmp(G_err))) {
        printf("ERROR: %d\n",err);
    }
    else {
    G_sem = def_sys();
    load_contexts(G_sem);

    //**** core tests
    testSemTable();
    testDef();
    testTree();
    testMTree();
    testStream();
    testLabel();
    testSemtrex();
    testProcess();
    testReceptor();
    testScape();
    testVMHost();
    testAccumulator();
    testProtocol();

    /**** receptor tests */
    /* /\* testGroup(); *\/ */
    testHTTP();

    /****** examples */
    /* testProfileExample(); */

    sys_free(G_sem);
    report_tests();
    }
    pthread_exit(NULL);
    //    return 0;
}