Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 5 and Version 6 of Projects/GSoC/TestingReview/Check


Ignore:
Timestamp:
07/09/12 00:31:08 (12 years ago)
Author:
Xiaochen Pan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Projects/GSoC/TestingReview/Check

    v5 v6  
    44Check is simple unit testing framework for test-driven development.
    55
    6 + It uses separate processes for each test suites to protect the address space for each test suites.
     6 * It uses separate processes for each test suites to protect the address space for each test suites.
    77
    8 - It forks a separate process for each unit tests. Therefore, it cannot be used in RTEMS-based testing.
     8 * It forks a separate process for each unit tests. Therefore, it cannot be used in RTEMS-based testing.
    99
    10 + Test cases, test fixtures, and test suites are well supported by Check with automatic test discovery to promote tests automation.
     10 * Test cases, test fixtures, and test suites are well supported by Check with automatic test discovery to promote tests automation.
    1111
    12 + It supports tests debugging with a NO-FORK mode. It has multiple output format including XML.
     12 * It supports tests debugging with a NO-FORK mode. It has multiple output format including XML.
    1313
    14 + It also have a convenient test time-out feature to rule out tests take use infinite amount of time.
     14 * It also have a convenient test time-out feature to rule out tests take use infinite amount of time.