Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast Track for Integration Candidate 2020-06-10 #513

Merged
merged 5 commits into from
Jun 17, 2020

Commits on Jun 16, 2020

  1. Fix #502, Add extra assert macros

    Add the following macros for UT assert:
    
    UtAssert_INT32_EQ - check equality as 32 bit signed int
    UtAssert_UINT32_EQ - check equality as 32 bit unsigned int
    UtAssert_NOT_NULL - check pointer not null
    UtAssert_NULL - check pointer is null
    UtAssert_NONZERO - check integer is nonzero
    UtAssert_ZERO - check integer is zero
    UtAssert_STUB_COUNT - check stub count
    
    These are all just wrappers around UtAssert_True for
    commonly-used asserts.  The description message is
    auto generated so it is consistent.
    jphickey committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    6c6ab06 View commit details
    Browse the repository at this point in the history
  2. Fix #509, Remove uintmax_t usage

    Some systems may not provide this type.  Using "unsigned long" instead
    should be sufficient.
    jphickey committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    3d26418 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. Merge pull request #503 from jphickey/fix-502-utassert-macros

    Fix #502, Add extra assert macros
    astrogeco authored Jun 17, 2020
    Configuration menu
    Copy the full SHA
    3cc506c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #510 from jphickey/fix-509-no-uintmax_t

    Fix #509, Remove uintmax_t usage
    astrogeco authored Jun 17, 2020
    Configuration menu
    Copy the full SHA
    e561cc7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9910039 View commit details
    Browse the repository at this point in the history