Commit b4d262f8 authored by Michele Carignani's avatar Michele Carignani
Browse files

Updates to compile tst 010 2.6.1.0.0.2

parent da635f06
Loading
Loading
Loading
Loading
Loading
+47 B (23.8 KiB)

File changed.File mode changed from 100755 to 100644.

No diff preview for this file type.

+1 −1
Original line number Original line Diff line number Diff line
@@ -90,7 +90,7 @@ if __name__ == "__main__":


    print("Generating entire SOL tests")
    print("Generating entire SOL tests")


    sol_specs = [ "SOL002", "SOL003"] # TODO "SOL005"]
    sol_specs = ["SOL002", "SOL003", "SOL005"]


    for solspec in sol_specs:
    for solspec in sol_specs:
        create_test_for_sol(solspec, ROOT, COMMIT_ID, "..")
        create_test_for_sol(solspec, ROOT, COMMIT_ID, "..")
+2 −2
Original line number Original line Diff line number Diff line
@@ -74,7 +74,7 @@ def gen_test(suite, this_test, spec, sec_ref, API, commit_id, sol):


    ntp = TP(this_test.doc)
    ntp = TP(this_test.doc)


    log_line = ["TD", API, suite, this_test, ntp.tp_id or "No ID"]
    log_line = ["++++ TD: ", sol, API, suite, this_test, ntp.tp_id or "No ID"]
    not QUIET and print(",".join([str(x) for x in log_line]))
    not QUIET and print(",".join([str(x) for x in log_line]))


    if DRY_RUN:
    if DRY_RUN:
@@ -97,7 +97,7 @@ def gen_test(suite, this_test, spec, sec_ref, API, commit_id, sol):




def gen_api_suite(sec_ref, suite, spec, workspace, commit_id, sol):
def gen_api_suite(sec_ref, suite, spec, workspace, commit_id, sol):
    print("  Generating test suite: {} {}".format(sec_ref, suite))
    print("++ Generating test suite: {} {} {}".format(sol, sec_ref, suite))
    spec.add_sub_heading_from_ref(str(suite), sec_ref, config.DOC_SUITE_LEVEL)
    spec.add_sub_heading_from_ref(str(suite), sec_ref, config.DOC_SUITE_LEVEL)
    for i in suite.tests:
    for i in suite.tests:
        gen_test(suite, i, spec, sec_ref, workspace, commit_id, sol)
        gen_test(suite, i, spec, sec_ref, workspace, commit_id, sol)
Loading