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

Changes between Version 4 and Version 5 of GCI/Coding/AddPOSIXMethodSignatureComplianceTests


Ignore:
Timestamp:
11/14/18 22:56:00 (6 years ago)
Author:
Joel Sherrill
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GCI/Coding/AddPOSIXMethodSignatureComplianceTests

    v4 v5  
    4343Each header file has multiple methods. Each goes in a separate file.
    4444
    45 Use other existing tests as guides but note that some do not follow the proper Doxygen style expected now in RTEMS. Please use current style.
     45Use other existing tests as guides but note that some do not follow the proper Doxygen style expected now in RTEMS. Please use current style like pthread/pthread_getconcurrency.c:
    4646
    47 Also some use the RTEMS GPL v2 with exception license. Use the BSD style license found here: https://git.rtems.org/rtems-testing/tree/rtems-test-template/psxtest/init.c
     47{{{
     48/**
     49 *  @file
     50 *  @brief pthread_getconcurrency() API Conformance Test
     51 */
     52}}}
     53
     54Also some use the RTEMS GPL v2 with exception license. Use the BSD style license found here: https://git.rtems.org/rtems-testing/tree/rtems-test-template/psxtest/init.c.
     55
     56{{{
     57/*
     58 *  COPYRIGHT (c) <YYYY>.
     59 *  <author goes here>
     60 *
     61 *  Permission to use, copy, modify, and/or distribute this software
     62 *  for any purpose with or without fee is hereby granted.
     63 *
     64 *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
     65 *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
     66 *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
     67 *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
     68 *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
     69 *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
     70 *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     71 */
     72}}}
    4873
    4974===  Adding the Test to the Build System  ===