public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Kinney, Michael D" <michael.d.kinney@intel.com>
To: edk2-devel@lists.01.org
Cc: Sean Brogan <sean.brogan@microsoft.com>,
	Liming Gao <liming.gao@intel.com>,
	Michael D Kinney <michael.d.kinney@intel.com>
Subject: [staging/edk2-test Patch 00/10] MsUnitTestPkg: Add Unit Test Support and sample
Date: Tue, 19 Dec 2017 16:00:04 -0800	[thread overview]
Message-ID: <20171220000014.9140-1-michael.d.kinney@intel.com> (raw)

Cherry-picked from branch:
https://github.com/Microsoft/MS_UEFI/tree/share/XmlAndUnitTest

Commit:
https://github.com/Microsoft/MS_UEFI/commit/f2b2a2cb8f4331692297d0cab67a333714d71165
https://github.com/Microsoft/MS_UEFI/commit/928546fd6709ceff1f185ecb901e5cd4d0f82c7c
https://github.com/Microsoft/MS_UEFI/commit/d2901abfc9823c21d3a962fa69e025a92832466b

Additional updates for 32-bit systems, VS2017, GCC, safe string
functions, missing DEC file declarations, missing DSC file, and
EDK II style issues.

Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>

Kinney, Michael D (7):
  MsUnitTestPkg/Include: Remove use of variadic macros
  MsUnitTestPkg/Library: Use safe string functions
  MsUnitTestPkg/UnitTestLib: Fix GCC build errors
  MsUnitTestPkg/Library: Update __FUNCTION__ usage
  MsUnitTestPkg: Add missing library classes
  MsUnitTestPkg: Add missing DSC file
  MsUnitTestPkg: Fix EDK II style issues

Sean Brogan (3):
  MsUnitTestPkg: Add Unit Test Support and sample
  MsUnitTestPkg: Update copyright and license info
  MsUnitTestPkg: Update for VS2017 and 32-bit apps

 .../Include/Guid/MsUnitTestPkgTokenSpace.h         |  33 +
 MsUnitTestPkg/Include/Library/UnitTestAssertLib.h  | 146 ++++
 MsUnitTestPkg/Include/Library/UnitTestBootUsbLib.h |  44 +
 MsUnitTestPkg/Include/Library/UnitTestLib.h        | 114 +++
 MsUnitTestPkg/Include/Library/UnitTestLogLib.h     |  68 ++
 .../Include/Library/UnitTestPersistenceLib.h       |  95 +++
 .../Include/Library/UnitTestResultReportLib.h      |  43 +
 MsUnitTestPkg/Include/UnitTestTypes.h              | 221 +++++
 .../Library/UnitTestAssertLib/UnitTestAssertLib.c  | 318 +++++++
 .../UnitTestAssertLib/UnitTestAssertLib.inf        |  54 ++
 .../UnitTestBootUsbClassLib/UnitTestBootUsb.c      | 137 +++
 .../UnitTestBootUsbClassLib.inf                    |  58 ++
 .../UnitTestBootUsbMicrosoftLib/UnitTestBootUsb.c  | 153 ++++
 .../UnitTestBootUsbMicrosoftLib.inf                |  57 ++
 MsUnitTestPkg/Library/UnitTestLib/Md5.c            | 352 ++++++++
 MsUnitTestPkg/Library/UnitTestLib/Md5.h            |  75 ++
 MsUnitTestPkg/Library/UnitTestLib/UnitTestLib.c    | 932 +++++++++++++++++++++
 MsUnitTestPkg/Library/UnitTestLib/UnitTestLib.inf  |  61 ++
 .../Library/UnitTestLogLib/UnitTestLogLib.c        | 261 ++++++
 .../Library/UnitTestLogLib/UnitTestLogLib.inf      |  60 ++
 .../UnitTestPersistenceFileSystemLib.c             | 407 +++++++++
 .../UnitTestPersistenceFileSystemLib.inf           |  71 ++
 .../UnitTestPersistenceLibNull.c                   | 100 +++
 .../UnitTestPersistenceLibNull.inf                 |  48 ++
 .../UnitTestResultReportLib.c                      | 221 +++++
 .../UnitTestResultReportLib.inf                    |  53 ++
 MsUnitTestPkg/MsUnitTestPkg.dec                    |  70 ++
 MsUnitTestPkg/MsUnitTestPkg.dsc                    |  65 ++
 MsUnitTestPkg/ReadMe.md                            |  65 ++
 .../Sample/SampleUnitTestApp/SampleUnitTestApp.c   | 214 +++++
 .../Sample/SampleUnitTestApp/SampleUnitTestApp.inf |  63 ++
 31 files changed, 4659 insertions(+)
 create mode 100644 MsUnitTestPkg/Include/Guid/MsUnitTestPkgTokenSpace.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestAssertLib.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestBootUsbLib.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestLib.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestLogLib.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestPersistenceLib.h
 create mode 100644 MsUnitTestPkg/Include/Library/UnitTestResultReportLib.h
 create mode 100644 MsUnitTestPkg/Include/UnitTestTypes.h
 create mode 100644 MsUnitTestPkg/Library/UnitTestAssertLib/UnitTestAssertLib.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestAssertLib/UnitTestAssertLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestBootUsbClassLib/UnitTestBootUsb.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestBootUsbClassLib/UnitTestBootUsbClassLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestBootUsbMicrosoftLib/UnitTestBootUsb.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestBootUsbMicrosoftLib/UnitTestBootUsbMicrosoftLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestLib/Md5.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestLib/Md5.h
 create mode 100644 MsUnitTestPkg/Library/UnitTestLib/UnitTestLib.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestLib/UnitTestLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestLogLib/UnitTestLogLib.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestLogLib/UnitTestLogLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestPersistenceFileSystemLib/UnitTestPersistenceFileSystemLib.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestPersistenceFileSystemLib/UnitTestPersistenceFileSystemLib.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.inf
 create mode 100644 MsUnitTestPkg/Library/UnitTestResultReportPlainTextOutputLib/UnitTestResultReportLib.c
 create mode 100644 MsUnitTestPkg/Library/UnitTestResultReportPlainTextOutputLib/UnitTestResultReportLib.inf
 create mode 100644 MsUnitTestPkg/MsUnitTestPkg.dec
 create mode 100644 MsUnitTestPkg/MsUnitTestPkg.dsc
 create mode 100644 MsUnitTestPkg/ReadMe.md
 create mode 100644 MsUnitTestPkg/Sample/SampleUnitTestApp/SampleUnitTestApp.c
 create mode 100644 MsUnitTestPkg/Sample/SampleUnitTestApp/SampleUnitTestApp.inf

-- 
2.14.2.windows.3



             reply	other threads:[~2017-12-19 23:55 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-20  0:00 Kinney, Michael D [this message]
2017-12-20  0:00 ` [staging/edk2-test Patch 01/10] MsUnitTestPkg: Add Unit Test Support and sample Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 02/10] MsUnitTestPkg: Update copyright and license info Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 03/10] MsUnitTestPkg: Update for VS2017 and 32-bit apps Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 04/10] MsUnitTestPkg/Include: Remove use of variadic macros Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 05/10] MsUnitTestPkg/Library: Use safe string functions Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 06/10] MsUnitTestPkg/UnitTestLib: Fix GCC build errors Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 07/10] MsUnitTestPkg/Library: Update __FUNCTION__ usage Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 08/10] MsUnitTestPkg: Add missing library classes Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 09/10] MsUnitTestPkg: Add missing DSC file Kinney, Michael D
2017-12-20  0:00 ` [staging/edk2-test Patch 10/10] MsUnitTestPkg: Fix EDK II style issues Kinney, Michael D
2018-01-18  8:10 ` [staging/edk2-test Patch 00/10] MsUnitTestPkg: Add Unit Test Support and sample Sean Brogan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171220000014.9140-1-michael.d.kinney@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox