Changes between Version 6 and Version 7 of Developer/Projects/Open/TestingImprovements


Ignore:
Timestamp:
02/07/13 10:48:47 (11 years ago)
Author:
C Rempel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Projects/Open/TestingImprovements

    v6 v7  
    1212'''Status:''' Uninitiated.
    1313
    14 '''Introduction:''' RTEMS [http://git.rtems.org/rtems/tree/testsuites test suite] needs major cleanup in order to modernise and allow for easier additions of new tests.
     14'''Introduction:''' Learning how to test software is an extremely desirable skill in the software development world.  RTEMS [http://git.rtems.org/rtems/tree/testsuites test suite] needs major cleanup in order to modernize and allow for easier additions of new tests.
    1515
    16 '''Goal:''' Creation of 4 separate test groups: Host-based (Testing of APIs out-of-band), Operational (Runs on actual hardware or in-simulation), RTEMS BSP-specific tests and tests specific to a Board.
     16'''Goal:''' Port existing RTEMS tests into more modern testing frame-works, thereby allowing easier addition of tests. 
    1717
    18 '''Requirements:''' Knowledge of testing is not required.  The idea candidate should have a firm grasp of the C language with knowledge of C++ as some of the test frameworks will be written using [https://code.google.com/p/googletest/ googletest] and [https://code.google.com/p/googlemock/ googlemock].  Other components of the framework will have to be written from scratch the exact language used for this has not been decided.  Learning how to test software is an extremely desirable skill in the software development world any candidate should come in with an eagerness to learn.
     18'''Possible Test Groups:''' This part is not designed for GSoC, but for future reference
     19
     20Creation of 4 separate test groups:
     21# Host-based (Testing of APIs out-of-hand)
     22# Operational (Runs on actual hardware or in-simulation),
     23# RTEMS BSP-specific tests and
     24# tests specific to a Board.
     25
     26'''Requirements:''' Knowledge of testing is not required.  The ideal candidate should have a firm grasp of the C language with knowledge of C++ as some of the test frameworks will be written using [https://code.google.com/p/googletest/ googletest] and [https://code.google.com/p/googlemock/ googlemock].  Other components of the framework will have to be written from scratch, the exact language used is will have to be agreed upon by the student and mentor, but should work on both Linux and Windows.
    1927
    2028'''Resources:''' You are encouraged to contact Amar on IRC in the RTEMS channel or email him directly (amar-rtems.org) with any questions you may have.
    21 
    2229= Additional Information =
    2330
     
    3037
    3138Anyone accepting this task as part of GSoC is not expected to complete the entire project in one summer, the tasks will be broken into smaller milestones it is OK to complete as many of these milestones as possible before the period ends.
     39=  Objectives  =
     40==  Project Idea 1  ==
    3241
    33 = Miscellaneous Sections =
     42# Modify/use googletest and googlemock to write RTEMS tests, then package them into a separate package like examples-v2==  Project Idea 2  ==
     43
     44# Porting the testsuites into a separate package like examples-v2 would make designing new tests much faster.
     45# Adding a configuration to only build one of the suites at a time would make designing new tests much faster.
     46# The ability to port the tests, once developed, back into the test-suite would be beneficial.
     47 = Miscellaneous Sections =
    3448
    3549As the project progresses, you will need to add build instructions, etc and this page will evolve from a project description into a HOWTO.