Platform Initialization Self-Certification Test 20080120 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Platform Initialization Self-Certification Test 20080120 (Default branch)
# 1  
Old 02-28-2008
Platform Initialization Self-Certification Test 20080120 (Default branch)

The Platform Initialization Self-CertificationTest (pi-sct) project is intended to verify thata given UEFI-based module is compatible with thePI specification, using specific tests on PEI andDXE Foundations from the PI Spec on the UEFI Web site.License: Eclipse Public LicenseChanges:
EDK 1.0.4 can now be used to build PI SCT. The test case for the DXE image service uses the updated device path subtype of the PIWG firmware file. The test case for the PEI FV service uses the updated parameter types. Test assertions have been added in the DXE compliant test case to check for the existence of the capsule architectural protocol and status code runtime protocol. A bug where the FFS format test would hang or dead-loop on some platforms has been fixed. A facility to create flash images of the test system has been added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

IBM AIX certification (Test 00190)

I am planning to do AIX certification (190). Please can anyone suggest me a book from where I can prepare. Waiting anxiously for your reply !!! NOMEE (3 Replies)
Discussion started by: nomeealy
3 Replies
Login or Register to Ask a Question
Test::Requires(3pm)					User Contributed Perl Documentation				       Test::Requires(3pm)

NAME
Test::Requires - Checks to see if the module can be loaded SYNOPSIS
# in your Makefile.PL use inc::Module::Install; test_requires 'Test::Requires'; # in your test use Test::More tests => 10; use Test::Requires { 'HTTP::MobileAttribute' => 0.01, # skip all if HTTP::MobileAttribute doesn't installed }; isa_ok HTTP::MobileAttribute->new, 'HTTP::MobileAttribute::NonMobile'; # or use Test::More tests => 10; use Test::Requires qw( HTTP::MobileAttribute ); isa_ok HTTP::MobileAttribute->new, 'HTTP::MobileAttribute::NonMobile'; # or use Test::More tests => 10; use Test::Requires; test_requires 'Some::Optional::Test::Required::Modules'; isa_ok HTTP::MobileAttribute->new, 'HTTP::MobileAttribute::NonMobile'; DESCRIPTION
Test::Requires checks to see if the module can be loaded. If this fails rather than failing tests this skips all tests. AUTHOR
Tokuhiro Matsuno <tokuhirom @*(#RJKLFHFSDLJF gmail.com> THANKS TO
kazuho++ # some tricky stuff miyagawa++ # original code from t/TestPlagger.pm tomyhero++ # reported issue related older test::builder SEE ALSO
"TestPlagger.pm" in t LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-03-27 Test::Requires(3pm)