Changeset 1011


Ignore:
Timestamp:
07/15/20 02:13:13 (4 years ago)
Author:
Maciej Komosinski
Message:

In tester, print the number of failed tests along with the "dot=OK sequence"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tester/tester.py

    r1010 r1011  
    299299if __name__ == "__main__":
    300300        tests_failed, tests_total, dotOK = main()
    301         print("TestsDotOK:"+dotOK);
    302         #print("%d / %d failed tests" % (tests_failed, tests_total))
     301        print("TestsDotOK:%s(%d)" % (dotOK, tests_failed));
     302        print("%d / %d failed tests" % (tests_failed, tests_total))
    303303        sys.exit(tests_failed)  # return the number of failed tests as exit code ("error level") to shell
Note: See TracChangeset for help on using the changeset viewer.