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
ExtUtils::MM_Any(3pm)					 Perl Programmers Reference Guide				     ExtUtils::MM_Any(3pm)

NAME
ExtUtils::MM_Any - Platform agnostic MM methods SYNOPSIS
FOR INTERNAL USE ONLY! package ExtUtils::MM_SomeOS; # Temporarily, you have to subclass both. Put MM_Any first. require ExtUtils::MM_Any; require ExtUtils::MM_Unix; @ISA = qw(ExtUtils::MM_Any ExtUtils::Unix); DESCRIPTION
FOR INTERNAL USE ONLY! ExtUtils::MM_Any is a superclass for the ExtUtils::MM_* set of modules. It contains methods which are either inherently cross-platform or are written in a cross-platform manner. Subclass off of ExtUtils::MM_Any and ExtUtils::MM_Unix. This is a temporary solution. THIS MAY BE TEMPORARY! Inherently Cross-Platform Methods These are methods which are by their nature cross-platform and should always be cross-platform. File::Spec wrappers DEPRECATED The following methods are deprecated wrappers around File::Spec functions. They exist from before File::Spec did and in fact are from which File::Spec sprang. They are all deprecated. Please use File::Spec directly. canonpath catdir catfile curdir file_name_is_absolute path rootdir updir Thought To Be Cross-Platform Methods These are methods which are thought to be cross-platform by virtue of having been written in a way to avoid incompatibilities. test_via_harness my $command = $mm->test_via_harness($perl, $tests); Returns a $command line which runs the given set of $tests with Test::Harness and the given $perl. Used on the t/*.t files. test_via_script my $command = $mm->test_via_script($perl, $script); Returns a $command line which just runs a single test without Test::Harness. No checks are done on the results, they're just printed. Used for test.pl, since they don't always follow Test::Harness formatting. AUTHOR
Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix and ExtUtils::MM_Win32. perl v5.8.0 2002-06-01 ExtUtils::MM_Any(3pm)