<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kai.kang</id>
	<title>Yocto Project - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.yoctoproject.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kai.kang"/>
	<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/Special:Contributions/Kai.kang"/>
	<updated>2026-04-23T11:44:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=Multilib&amp;diff=10865</id>
		<title>Multilib</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=Multilib&amp;diff=10865"/>
		<updated>2013-08-06T08:47:25Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* How to use it */ - Changed MULTILIB_IMAGE_INSTALL to IMAGE_INSTALL (yocto-docs rev: dfcbecf94)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Vision ===&lt;br /&gt;
Provide the ability to build multiple arch library in one image, for example, in x86_64 arch, provide lib32, lib64, or even libx32.&lt;br /&gt;
&lt;br /&gt;
=== Basic Infrastructure ===&lt;br /&gt;
&lt;br /&gt;
Recipe/Package name handling.&lt;br /&gt;
* Use BBCLASSEXTEND to make a certain recipe multilib capable. See meta/conf/multilib.conf&lt;br /&gt;
* Define a global variable ${MLPREFIX} that is likely &amp;quot;lib32-&amp;quot; or &amp;quot;lib64-&amp;quot;.&lt;br /&gt;
* Rename the recipe name to be ${MLPREFIX}${PN}.&lt;br /&gt;
* For a certain recipe, map all its DEPENDS, RDEPENDS, RPROVIDES, RRECOMMENDS, PACKAGES, PACKAGES_DYNAMIC, etc with ${MLPREFIX}.&lt;br /&gt;
&lt;br /&gt;
Multilib target architecture and build options selection.&lt;br /&gt;
* By setting DEFAULTTUNE_virtclass-multilib-xxx in local.conf to select target multilib architecture (see following examples). Certain parameters will be selected for toolchain accordingly. (See different tune files under &amp;quot;meta/conf/machine/include/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
RPM backend.&lt;br /&gt;
* Define unique architecture for multilib packages, along with creating unique deploy folder under tmp/deploy/rpm. (Take lib32 on qemux86-64 as an example, the possible architectures in the system are: &amp;quot;all&amp;quot;, &amp;quot;qemux86_64&amp;quot;, &amp;quot;x86_64&amp;quot;, &amp;quot;lib32_qemux86_64&amp;quot;, and &amp;quot;lib32_x86&amp;quot; ).&lt;br /&gt;
* The ${MLPREFIX} will be stripped from ${PN} when doing RPM packaging. Therefore the naming for normal RPM package and multilib RPM package in a qemux86-64 system are something like &amp;quot;bash-4.1-r2.x86_64.rpm&amp;quot; and &amp;quot; bash-4.1-r2.lib32_x86.rpm&amp;quot;.&lt;br /&gt;
* When installing a multilib image, the RPM backend will firstly install the base image, then install the multilib libraries.&lt;br /&gt;
&lt;br /&gt;
IPK backend.&lt;br /&gt;
* ${MLPREFIX} will NOT be stripped from ${PN} when doing IPK packaging. Therefore the normal and multilib IPK packages are something like: &amp;quot;bash_4.1-r2_x86_64.ipk&amp;quot; and &amp;quot;lib32-bash_4.1-r2_x86.ipk&amp;quot;.&lt;br /&gt;
* IPK deploy folder will not be added with ${MLPREFIX} since normal and multilib packages can exist in the same folder due to the ${PN} differences.&lt;br /&gt;
* IPK defines a kind of sanity check for multilib installation with certain rules on file comparison, overridden, etc.&lt;br /&gt;
&lt;br /&gt;
=== How to use it ===&lt;br /&gt;
&lt;br /&gt;
Build an image with multilib libraries (qemux86-64 machine with lib32-connman):&lt;br /&gt;
&lt;br /&gt;
* Setting the following in local.conf.&lt;br /&gt;
  IMAGE_INSTALL = &amp;quot;lib32-connman&amp;quot;&lt;br /&gt;
  require conf/multilib.conf&lt;br /&gt;
  MULTILIBS = &amp;quot;multilib:lib32&amp;quot;&lt;br /&gt;
  DEFAULTTUNE_virtclass-multilib-lib32 = &amp;quot;x86&amp;quot;&lt;br /&gt;
* bitbake core-image-sato&lt;br /&gt;
&lt;br /&gt;
If user wants to build certain multilib recipe (lib32-connman):&lt;br /&gt;
&lt;br /&gt;
* bitbake lib32-connman&lt;br /&gt;
&lt;br /&gt;
=== Current Status ===&lt;br /&gt;
&lt;br /&gt;
* Multilib feature works fine within core-image-minimal and core-image-sato images.&lt;br /&gt;
&lt;br /&gt;
* core-image-sato-sdk and core-image-lsb will be worked on after 1.1 release.&lt;br /&gt;
&lt;br /&gt;
===Notes===&lt;br /&gt;
This is one of Richard&#039;s initial email before the multilib task begin:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&lt;br /&gt;
There have been a few issues and some lessons to learn. I&#039;ve also have to make some implementation decisions based on the issues we were running into. To summarize them:&lt;br /&gt;
&lt;br /&gt;
* bitbake has issues if you try and delete variables from the data store. Patches two and three on the branch fix the issues I was seeing. More details are in the commits.&lt;br /&gt;
&lt;br /&gt;
* I found the recent additional event in bitbake wasn&#039;t in the right place to optimally support multilib so I had to move the expandKeys() call. Since the only known user is the native/nativesdk classes in OE-Core, this should be ok to do at this point. Again, the commit has the specific details.&lt;br /&gt;
&lt;br /&gt;
* When adding parameter support to BBCLASSEXTEND I added some variables so the class can figure out which class is being processed and what the parameter is. Related to this is the issue that bbclass event handlers once added always get called, even if the class isn&#039;t inherited in a subsequent recipe file!&lt;br /&gt;
&lt;br /&gt;
* I switched to using &amp;lt;multilib&amp;gt;- as the prefix for multilib recipes. This was because using the &amp;quot;:&amp;quot; character didn&#039;t work out as it gets placed into paths in too many places if you add it to PN.&lt;br /&gt;
&lt;br /&gt;
* I&#039;ve made the assumption that if a name in PACKAGES uses PN, its at the start.&lt;br /&gt;
&lt;br /&gt;
* The use of := in cross.bbclass makes life hard for multilib. There is a special section of multilib.bbclass devoted to handling those variables. Initially I approached this as two separate multilib classes but these are merged together now.&lt;br /&gt;
&lt;br /&gt;
* I set the TARGET_VENDOR to the horrendously ugly string &amp;quot;-pokymllib32&amp;quot;. The reason is that any &amp;quot;-&amp;quot; characters in there breaks config.sub at present and other separators cause other issues. I suspect we can fix that going forward but for now it works albeit looking horrible.&lt;br /&gt;
&lt;br /&gt;
* I had to introduce MLPREFIX for use in certain places, thankfully all in places &amp;quot;normal&amp;quot; recipes shouldn&#039;t need to use it.&lt;br /&gt;
&lt;br /&gt;
=== Task Breakdown ===&lt;br /&gt;
&lt;br /&gt;
# Change libdir to &amp;quot;lib64&amp;quot; for qemux86-64 and see what breaks.&lt;br /&gt;
# Extend MULTILIB class extension to recipes required to build:&lt;br /&gt;
## minimal image&lt;br /&gt;
## LSB image?&lt;br /&gt;
## Sato image?&lt;br /&gt;
## world [stretch goal for 1.1]&lt;br /&gt;
#: This task also could include a better way of specifying which recipes to extend.&lt;br /&gt;
# Add support to RPM packaging backend to turn modified package names into true rpm multilib packages.&lt;br /&gt;
# Add support to standard opkg backend to allow parallel install of multilib variant packages (likely to be hacky at first but also include a proposal for better native opkg support of this)&lt;br /&gt;
# Add support to bitbake to pass BBEXTEND parameters from options like bitbake -b where filenames are specified on the commandline&lt;br /&gt;
# Create some &amp;quot;standard&amp;quot; multilib configurations (x86 32+64 bit)&lt;br /&gt;
# Overhaul architecture, ABI, optimisation configuration files with a view to better structure (and ease specifying multilib configurations).&lt;br /&gt;
# Reconsolidate multilib + multilibcross class differences [already done by RP now]&lt;br /&gt;
# Directly support multlibs within the toolchain itself [post 1.1]&lt;br /&gt;
# Investigate better TARGET_VENDOR handling for config.sub. Currently we can only have ARCH-VENDOR-linux where VENDOR cannot contain &amp;quot;-&amp;quot; but it might be possible to relax that constraint.&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9318</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9318"/>
		<updated>2013-03-27T07:06:52Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-64 (sugarbay,update(2013-03-12)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86 (emenlow,update(2013-03-12))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 31 || 1 ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 6 || 0 || 6 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 32 || 1  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 18 || 18 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 8 || 1  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 3 || 0 || 3 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2013-03-12))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 1389 || 0 || 1389 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 32 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 33 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 17 || 17 || 0  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 10 || 8 || 2  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; ||  11  || 1 || 10 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 0 || 0 || 0 ||  Warnings: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 3 || 3 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 0 || 1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9122</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9122"/>
		<updated>2013-03-12T09:48:26Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2013-03-12)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86 (emenlow,update(2013-03-12))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 31 || 1 ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 6 || 0 || 6 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 32 || 1  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 18 || 18 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 8 || 1  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 3 || 0 || 3 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9121</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9121"/>
		<updated>2013-03-12T09:45:37Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2012-08-24)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2013-03-12))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 31 || 1 ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 6 || 0 || 6 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 32 || 1  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 18 || 18 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 8 || 1  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 3 || 0 || 3 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9120</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9120"/>
		<updated>2013-03-12T09:45:15Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2012-08-24)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 31 || 1 ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 6 || 0 || 6 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 32 || 1  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 18 || 18 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 8 || 1  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 3 || 0 || 3 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9119</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9119"/>
		<updated>2013-03-12T09:44:30Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2013-03-12)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 32 || 31 || 1 ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 33 || 32 || 1  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 18 || 18 || 0 ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 8 || 1  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 0 || 0 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 3 || 0 || 3 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 6 || 6 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || 0 ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 || 0 || &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9118</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=9118"/>
		<updated>2013-03-12T09:28:54Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Result */ - update x86 results on Mar 12, 2013&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2013-03-12. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-3 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-3 ||  Failures: 6 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 32 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 33 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 18 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.4-1 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Failures: 11 || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Failures: 3 ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Warnings: 4 (Test suite issue) || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 1 || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-42 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7974</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7974"/>
		<updated>2012-11-13T08:07:06Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Setup test environment */ - enable PAM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf(LSB 4.1 core test requires pam support, so open the distro feature “pam”）&lt;br /&gt;
&lt;br /&gt;
$ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
$ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-10-18. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-2 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-2 ||  Failures: 4 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 29 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 9 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 16 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.3-7 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Success || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Success || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-4 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=PAM_Integration&amp;diff=7690</id>
		<title>PAM Integration</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=PAM_Integration&amp;diff=7690"/>
		<updated>2012-10-26T02:57:28Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Build image */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Motivation ==&lt;br /&gt;
For Yocto 1.1 we are working to ensure that PAM (Pluggable Authentication Module) support is consistent and enabled in recipes where it is applicable. &lt;br /&gt;
&lt;br /&gt;
== Build image ==&lt;br /&gt;
If you want to enable pam support, please add &amp;quot;pam&amp;quot; to DISTRO_FEATURES by add one line to build/conf/local.conf&lt;br /&gt;
  DISTRO_FEATURES_append += &amp;quot; pam&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Then add the packages to sato by apply this patch&lt;br /&gt;
  diff --git a/meta/recipes-sato/tasks/task-core-x11-sato.bb b/meta/recipes-sato/tasks/task-core-x11-sato.bb&lt;br /&gt;
  index 43b24d2..ea9fa14 100644&lt;br /&gt;
  --- a/meta/recipes-sato/tasks/task-core-x11-sato.bb&lt;br /&gt;
  +++ b/meta/recipes-sato/tasks/task-core-x11-sato.bb&lt;br /&gt;
  @@ -31,4 +31,11 @@ RDEPENDS_task-core-x11-sato = &amp;quot;\&lt;br /&gt;
       gtk-sato-engine \&lt;br /&gt;
       gthumb \&lt;br /&gt;
       x11vnc \&lt;br /&gt;
  -    ${NETWORK_MANAGER}&amp;quot;&lt;br /&gt;
  +    ${NETWORK_MANAGER} \&lt;br /&gt;
  +       \&lt;br /&gt;
  +       at \&lt;br /&gt;
  +       cronie \&lt;br /&gt;
  +       cups \&lt;br /&gt;
  +       polkit \&lt;br /&gt;
  +       screen \&lt;br /&gt;
  +       shadow \&lt;br /&gt;
  +       sudo &amp;quot;&lt;br /&gt;
&lt;br /&gt;
openssh is conflict with dropbear. If you want to test openssh please uninstall dropbear first and then install openssh.&lt;br /&gt;
&lt;br /&gt;
Then you can build the core-image-sato and test these packages on the sato image.&lt;br /&gt;
&lt;br /&gt;
== Log files ==&lt;br /&gt;
We can test the packages both on core-image-sato and core-image-lsb&lt;br /&gt;
* on sato, edit the /etc/syslog.conf, set&lt;br /&gt;
  DESTINATION=&amp;quot;file&amp;quot;     &lt;br /&gt;
then you can check the log via /var/log/message&lt;br /&gt;
* on lsb, the log information are send to /var/log/auth.log&lt;br /&gt;
&lt;br /&gt;
== Common configure files ==&lt;br /&gt;
For convenience, list common configure files here:&lt;br /&gt;
&lt;br /&gt;
common-auth&lt;br /&gt;
  auth	[success=1 default=ignore]	pam_unix.so nullok_secure&lt;br /&gt;
  auth	requisite			pam_deny.so&lt;br /&gt;
  auth	required			pam_permit.so&lt;br /&gt;
&lt;br /&gt;
common-account&lt;br /&gt;
  account [success=1 new_authtok_reqd=done default=ignore]        pam_unix.so &lt;br /&gt;
  account requisite                       pam_deny.so&lt;br /&gt;
  account required                        pam_permit.so&lt;br /&gt;
&lt;br /&gt;
common-password&lt;br /&gt;
  password        [success=1 default=ignore]      pam_unix.so obscure sha512&lt;br /&gt;
  password        requisite                       pam_deny.so&lt;br /&gt;
  password        required                        pam_permit.so&lt;br /&gt;
&lt;br /&gt;
common-session&lt;br /&gt;
  session [default=1]                     pam_permit.so&lt;br /&gt;
  session requisite                       pam_deny.so&lt;br /&gt;
  session required                        pam_permit.so&lt;br /&gt;
  session required                        pam_unix.so &lt;br /&gt;
&lt;br /&gt;
common-session-noninteractive&lt;br /&gt;
  session [default=1]                     pam_permit.so&lt;br /&gt;
  session requisite                       pam_deny.so&lt;br /&gt;
  session required                        pam_permit.so&lt;br /&gt;
  session required                        pam_unix.so&lt;br /&gt;
&lt;br /&gt;
== Recipes with PAM support ==&lt;br /&gt;
The following recipes are identified to have PAM support:&lt;br /&gt;
&lt;br /&gt;
=== at === &lt;br /&gt;
* Simple ways to verify &#039;at&#039;:&lt;br /&gt;
 $ at now&lt;br /&gt;
 $ echo &amp;quot;$msg_to_print&amp;quot; &amp;gt;&amp;gt; /tmp/at_test&lt;br /&gt;
 $ &amp;lt; ctrl+D &amp;gt;&lt;br /&gt;
 $ cat /tmp/at_test    # Verify if the message has been there &lt;br /&gt;
&lt;br /&gt;
* /etc/pam.d/atd - not installed by default, copy it from source code and replace &#039;@include&#039; with appropriate &#039;module-type include&#039;:&lt;br /&gt;
&lt;br /&gt;
 auth       required    pam_env.so&lt;br /&gt;
 auth       include     common-auth&lt;br /&gt;
 account    include     common-account&lt;br /&gt;
 session    include     common-session-noninteractive&lt;br /&gt;
 session    required    pam_limits.so&lt;br /&gt;
&lt;br /&gt;
* test pam plugins&lt;br /&gt;
** pam_env.so&lt;br /&gt;
modify /etc/pam.d/atd&lt;br /&gt;
 auth       required    pam_env.so    debug&lt;br /&gt;
modify /etc/security/pam_env.conf, add a test entry such as:&lt;br /&gt;
 MYNAME          DEFAULT=&amp;quot;test-at&amp;quot;&lt;br /&gt;
&lt;br /&gt;
log in /var/log/auth.log:&lt;br /&gt;
 Jul 11 08:41:22 qemux86 atd[678]: pam_env(atd:setcred): pam_putenv(&amp;quot;MYNAME=test-at&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
** pam_limits.so&lt;br /&gt;
add line to /etc/security/limits.conf &lt;br /&gt;
 root    -       nofile  3&lt;br /&gt;
&#039;at&#039; job failed, log in /var/log/auth.log:&lt;br /&gt;
 Jul 11 08:49:42 qemux86 atd[699]: pam_env(atd:setcred): Unable to open config file: /etc/security/pam_env.conf: Too many open files&lt;br /&gt;
&lt;br /&gt;
modify the line:&lt;br /&gt;
 root    -       nofile  4&lt;br /&gt;
&#039;at&#039; job successed, log in /var/log/auth.log:&lt;br /&gt;
 Jul 11 08:59:59 qemux86 atd[738]: pam_unix(atd:session): session opened for user root by (uid=0)                      &lt;br /&gt;
 Jul 11 08:59:59 qemux86 atd[738]: pam_unix(atd:session): session closed for user root&lt;br /&gt;
&lt;br /&gt;
=== cronie ===&lt;br /&gt;
* /etc/pam.d/crond:&lt;br /&gt;
 account    required   pam_access.so&lt;br /&gt;
 account    include    common-password&lt;br /&gt;
 session    required   pam_loginuid.so&lt;br /&gt;
 session    include    common-session-noninteractive&lt;br /&gt;
 auth       include    common-auth&lt;br /&gt;
&lt;br /&gt;
* test commands:&lt;br /&gt;
 crontab -e    # establish a crontab jobs and check if it works&lt;br /&gt;
 crontab -l    # list crontab jobs for current user&lt;br /&gt;
&lt;br /&gt;
* test pam plugins&lt;br /&gt;
Verified, test ways and the logs/results please refer to other packages:&lt;br /&gt;
** pam_env.so&lt;br /&gt;
** pam_access.so&lt;br /&gt;
** pam_unix.so&lt;br /&gt;
** pam_permit.so&lt;br /&gt;
** pam_deny.so&lt;br /&gt;
&lt;br /&gt;
** pam_loginuid.so&lt;br /&gt;
 TBD&lt;br /&gt;
&lt;br /&gt;
=== cups ===&lt;br /&gt;
* /etc/pam.d/cups&lt;br /&gt;
 auth	    required	pam_unix.so shadow nodelay&lt;br /&gt;
 account    required	pam_unix.so&lt;br /&gt;
&lt;br /&gt;
* Modify /etc/cups/cupsd.conf:&lt;br /&gt;
 ...&lt;br /&gt;
 - Listen localhost:631&lt;br /&gt;
 + Port 631&lt;br /&gt;
 ...&lt;br /&gt;
 # Restrict access to the server...                               &lt;br /&gt;
 &amp;lt;Location /&amp;gt;                                                     &lt;br /&gt;
   Order allow,deny                                               &lt;br /&gt;
 + allow all                                                      &lt;br /&gt;
 &amp;lt;/Location&amp;gt;&lt;br /&gt;
 ...&lt;br /&gt;
 # Restrict access to the admin pages...                          &lt;br /&gt;
 &amp;lt;Location /admin&amp;gt;                                                &lt;br /&gt;
   Order allow,deny                                               &lt;br /&gt;
 + allow all                                                      &lt;br /&gt;
 &amp;lt;/Location&amp;gt; &lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
* Test pam plugins&lt;br /&gt;
** pam_unix.so&lt;br /&gt;
Add debug option to &#039;/etc/pam/cups&#039;:&lt;br /&gt;
 auth	    required	pam_unix.so shadow nodelay debug&lt;br /&gt;
 account    required	pam_unix.so debug&lt;br /&gt;
&lt;br /&gt;
Access the cups configure page via web browser:&lt;br /&gt;
 http://&amp;lt;qemu.ip&amp;gt;:631&lt;br /&gt;
Click &#039;Administration&#039; -&amp;gt; &#039;Add Printer&#039;, start the pop-window for user authentication, input correct user and password:&lt;br /&gt;
 user: root&lt;br /&gt;
 pwd: &amp;lt;correct password&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Entry the &#039;Add Printer&#039; configure page successed.&lt;br /&gt;
&lt;br /&gt;
Input error password:&lt;br /&gt;
 user: root&lt;br /&gt;
 pwd: &amp;lt;error password&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check log in &#039;/var/log/cups/error_log&#039;:&lt;br /&gt;
 E [14/Jul/2011:02:41:26 +0800] cupsdAuthorize: pam_authenticate() returned 7 (Authentication failure)!&lt;br /&gt;
&lt;br /&gt;
Modify &#039;/etc/shadow&#039;:&lt;br /&gt;
 -root:$6$yMXdsttU$kT7A.n9bP0w0zzX6Uj1wmypHcq0lSGaC5/4xgNTZRSjNvW0q85ryBz8C6WNCbr22c6RjRKaVhv23ogrmoAo9m.:15168:0:99999:7:::&lt;br /&gt;
 +root:$6$yMXdsttU$kT7A.n9bP0w0zzX6Uj1wmypHcq0lSGaC5/4xgNTZRSjNvW0q85ryBz8C6WNCbr22c6RjRKaVhv23ogrmoAo9m.:15168:0:99999:7::1:&lt;br /&gt;
&lt;br /&gt;
Repeat the user authentication steps, check log in &#039;/var/log/cups/error_log&#039;:&lt;br /&gt;
 E [14/Jul/2011:03:05:00 +0800] cupsdAuthorize: pam_acct_mgmt() returned 13 (User account has expired)!&lt;br /&gt;
&lt;br /&gt;
=== dropbear ===&lt;br /&gt;
* For supporting pam in dropbear, we need two steps:&lt;br /&gt;
* Add configuration &amp;quot;--enable-pam&amp;quot; &lt;br /&gt;
* Add patches to open macro definition for supporting in option.h&lt;br /&gt;
 --- a/ptions.h  2011-07-12 11:32:34.165333202 +0800&lt;br /&gt;
 +++ b/options.h.new     2011-07-12 11:33:25.757332986 +0800&lt;br /&gt;
 @@ -149,9 +149,9 @@&lt;br /&gt;
   * but there&#039;s an interface via a PAM module - don&#039;t bother using it otherwise.&lt;br /&gt;
   * You can&#039;t enable both PASSWORD and PAM. */&lt;br /&gt;
 -#define ENABLE_SVR_PASSWORD_AUTH&lt;br /&gt;
 +//#define ENABLE_SVR_PASSWORD_AUTH&lt;br /&gt;
  /* PAM requires ./configure --enable-pam */&lt;br /&gt;
 -/*#define ENABLE_SVR_PAM_AUTH*/&lt;br /&gt;
 +#define ENABLE_SVR_PAM_AUTH&lt;br /&gt;
  #define ENABLE_SVR_PUBKEY_AUTH&lt;br /&gt;
  /* Wether to ake public key options in authorized_keys file into account */&lt;br /&gt;
&lt;br /&gt;
* Test result(dropbear only support simple authentication, account and auth)&lt;br /&gt;
** &#039;&#039;&#039;Server(account)&#039;&#039;&#039;&lt;br /&gt;
 (server ip:192.168.7.2)&lt;br /&gt;
 $touch /etc/pam.d/sshd&lt;br /&gt;
 #%PAM-1.0&lt;br /&gt;
 account  required     pam_access.so&lt;br /&gt;
 $vi /etc/security/access.conf&lt;br /&gt;
 - : root : ALL&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
 (Disallow access)&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 14 07:01:48 qemux86 dropbear[407]: pam_access(sshd:account): access denied for user `root&#039; from `ssh&#039;&lt;br /&gt;
 Jul 14 07:01:48 qemux86 dropbear[407]: pam_acct_mgmt() failed, rc=6, Permission denied &lt;br /&gt;
 Jul 14 07:01:48 qemux86 dropbear[407]: bad PAM password attempt for &#039;root&#039; from 192.168.7.1:33633&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;Server(auth)&#039;&#039;&#039;&lt;br /&gt;
 $vi /etc/pam.d/sshd&lt;br /&gt;
  auth include common-auth&lt;br /&gt;
 $vi /etc/pam.d/common-auth&lt;br /&gt;
 #auth   [success=1 default=ignore]      pam_unix.so nullok_secure&lt;br /&gt;
 auth    [success=0 default=ignore]      pam_unix.so debug&lt;br /&gt;
 $ passwd -d username &amp;lt;blank password&amp;gt;&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
 (Disallow access)&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 14 07:06:42 qemux86 dropbear[421]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=  user=yxf&lt;br /&gt;
 Jul 14 07:06:44 qemux86 dropbear[421]: pam_authenticate() failed, rc=7, Authentication failure &lt;br /&gt;
 Jul 14 07:06:44 qemux86 dropbear[421]: bad PAM password attempt for &#039;yxf&#039; from 192.168.7.1:379&lt;br /&gt;
&lt;br /&gt;
=== openssh ===&lt;br /&gt;
* Absent configuration /etc/pam.d/sshd, we need to add patches. After adding this file, it can support pam function through simple test.&lt;br /&gt;
* Test Result&lt;br /&gt;
** &#039;&#039;&#039;Configuration of sshd&#039;&#039;&#039;&lt;br /&gt;
 auth       include      common-auth&lt;br /&gt;
 account    required     pam_nologin.so&lt;br /&gt;
 account    include      common-account&lt;br /&gt;
 password   include      common-password&lt;br /&gt;
 session    optional     pam_keyinit.so force revoke&lt;br /&gt;
 session    include      common-session&lt;br /&gt;
 session    required     pam_loginuid.so&lt;br /&gt;
** &#039;&#039;&#039;auth include common-auth --Server&#039;&#039;&#039;&lt;br /&gt;
 $echo &#039;UsePAM no&#039; &amp;gt;&amp;gt;/etc/ssh/sshd_config&lt;br /&gt;
 $vi /etc/ssh/sshd_config&lt;br /&gt;
  PermitEmptyPasswords yes &lt;br /&gt;
&lt;br /&gt;
 Other is as same as sudo&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 12 11:16:21 qemux86 sshd[650]: pam_unix(sshd:session): session opened for user test by (uid=0)&lt;br /&gt;
&lt;br /&gt;
  &lt;br /&gt;
** &#039;&#039;&#039;account required pam_nologin.so --Server&#039;&#039;&#039;&lt;br /&gt;
 $touch /etc/nologin&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
 (Disallow accession)&lt;br /&gt;
** &#039;&#039;&#039;log information --Server&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 01:43:48 qemux86 sshd[672]: Accepted keyboard-interactive/pam for yxf from 192.168.7.1 port 59877 ssh2&lt;br /&gt;
 Jul 13 01:43:48 qemux86 sshd[672]: fatal: PAM: pam_setcred(): Failure setting user credentia&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;account include common-account --Server&#039;&#039;&#039;&lt;br /&gt;
 $vi /etc/ssh/sshd_config&lt;br /&gt;
  PermitEmptyPasswords no&lt;br /&gt;
 $vi /etc/pam.d/common-account &lt;br /&gt;
  #account [success=1 new_authtok_reqd=done default=ignore]        pam_unix.so&lt;br /&gt;
  account [success=0 new_authtok_reqd=done default=ignore]        pam_unix.so&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
 (Disallow accession)&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 02:11:24 qemux86 sshd[752]: Failed password for root from 192.168.7.1 port 53784 ssh2&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;password include common-password&#039;&#039;&#039;&lt;br /&gt;
 $vi /etc/pam.d/common-password&lt;br /&gt;
  password        [success=1 default=ignore]      pam_unix.so obscure sha512 &lt;br /&gt;
&lt;br /&gt;
 It&#039;s no use for sshd, So no test result for this item&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;session optional  pam_keyinit.so force revoke --Server&#039;&#039;&#039;&lt;br /&gt;
 No action&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 07:28:18 qemux86 sshd[1132]: pam_keyinit(sshd:session): OPEN 1&lt;br /&gt;
 Jul 13 07:28:18 qemux86 sshd[1132]: pam_keyinit(sshd:session): UID:1000 [0]  GID:1000 [0]&lt;br /&gt;
 Jul 13 07:28:18 qemux86 sshd[1132]: pam_keyinit(sshd:session): JOIN = 236576375&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;( the same session as the above &amp;quot;client&amp;quot;   )&lt;br /&gt;
 $exit&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 07:34:47 qemux86 sshd[1132]: pam_keyinit(sshd:session): CLOSE 1,236576375,1&lt;br /&gt;
 Jul 13 07:34:47 qemux86 sshd[1132]: pam_keyinit(sshd:session): REVOKE 236576375&lt;br /&gt;
 Jul 13 07:34:47 qemux86 sshd[1132]: pam_keyinit(sshd:session): UID:1000 [0]  GID:1000 [0]&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;session include common-session --Server&#039;&#039;&#039;&lt;br /&gt;
 $vi /etc/pam.d/common-session&lt;br /&gt;
  #session [default=1] pam_permit.so&lt;br /&gt;
  session [default=0] pam_permit.so&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
 (Disallow accession)&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 05:53:35 qemux86 sshd[960]: error: PAM: pam_open_session(): Permission denied&lt;br /&gt;
 Jul 13 05:53:35 qemux86 sshd[960]: Received disconnect from 192.168.7.1: 11: disconnected by user&lt;br /&gt;
** &#039;&#039;&#039; session required  pam_loginuid.so --Server&#039;&#039;&#039;(Record user´s login uid to the process attribute)&lt;br /&gt;
 No action&lt;br /&gt;
** &#039;&#039;&#039;Client&#039;&#039;&#039;&lt;br /&gt;
 $ssh username@server-ip&lt;br /&gt;
** &#039;&#039;&#039;log information&#039;&#039;&#039;&lt;br /&gt;
 Jul 13 06:31:32 qemux86 sshd[1028]: pam_warn(sshd:session): function=[pam_sm_open_session] service=[sshd] terminal=[ssh] user=[yxf] ruser= [&amp;lt;unknown&amp;gt;] rhost=[ubuntuwindriver.local] &lt;br /&gt;
 Jul 13 06:31:32 qemux86 sshd[1028]: pam_unix(sshd:session): session opened for user yxf by (uid=0)&lt;br /&gt;
&lt;br /&gt;
=== polkit ===&lt;br /&gt;
Polkit includes four binaries. Only pkexec depends on pam. So I use pkexec to make pam test.&lt;br /&gt;
Pkexec allows an authorized user to execute PROGRAM as another user. If username is not specified, then the program will be executed as the administrative super user, root.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Pam configuration file of polkit &#039;&#039;&#039;&lt;br /&gt;
 %PAM-1.0&lt;br /&gt;
 auth       include      common-auth&lt;br /&gt;
 account    include      common-account&lt;br /&gt;
 password   include      common-password&lt;br /&gt;
 session    include      common-session&lt;br /&gt;
* &#039;&#039;&#039;Test Reult&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Normally pkexec can call pam modules from the above configuration file&#039;&#039;&#039;&lt;br /&gt;
 $ pkexec cat /var/log/auth.log &lt;br /&gt;
  ==== AUTHENTICATING FOR org.freedesktop.policykit.exec ===&lt;br /&gt;
  Authentication is needed to run `/bin/cat&#039; as the super user&lt;br /&gt;
  Authenticating as: root&lt;br /&gt;
  Password: &amp;lt;---Input root password and press key &amp;quot;Enter&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 Jul 14 22:13:18 emenlow polkitd(authority=local): Registered Authentication Agent for unix-process:2466:778527 (system bus name :1.10 [pkexec  cat /var/log/auth.log], &lt;br /&gt;
 object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)&lt;br /&gt;
 Jul 14 22:13:18 emenlow polkit-agent-helper-1[2501]: PAM pam_parse: expecting non-zero; [... default=ignore]&lt;br /&gt;
 Jul 14 22:13:18 emenlow polkit-agent-helper-1[2501]: PAM pam_parse: expecting non-zero; [... default=ignore]&lt;br /&gt;
 Jul 14 22:13:21 emenlow polkitd(authority=local): Unregistered Authentication Agent for unix-process:2466:778527 (system bus name :1.10,&lt;br /&gt;
 object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)&lt;br /&gt;
 Jul 14 22:13:21 emenlow polkitd(authority=local): Operator of unix-process:2466:778527 FAILED to authenticate to gain authorization for action&lt;br /&gt;
 org.freedesktop.policykit.exec for unix-process:2466:778527 [sh] (owned by unix-user:yxf)&lt;br /&gt;
 Jul 14 22:14:37 emenlow polkitd(authority=local): Registered Authentication Agent for unix-process:2466:778527 (system bus name :1.11 [pkexec &lt;br /&gt;
 cat /var/log/auth.log], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)&lt;br /&gt;
 Jul 14 22:16:08 emenlow polkitd(authority=local): Operator of unix-process:2466:778527 successfully authenticated as unix-user:root to gain &lt;br /&gt;
 ONE-SHOT authorization for action org.freedesktop.policykit.exec for unix-process:2466:778527 [sh] (owned by unix-user:yxf)&lt;br /&gt;
 Jul 14 22:16:08 emenlow pkexec: pam_unix(polkit-1:session): session opened for user root by root(uid=500)&lt;br /&gt;
 Jul 14 22:16:08 emenlow pkexec[2507]: yxf: Executing command [USER=root] [TTY=/dev/pts/0] [CWD=/] [COMMAND=/bin/cat /var/log/auth.log]&lt;br /&gt;
 Jul 14 22:16:08 emenlow polkitd(authority=local): Unregistered Authentication Agent for unix-process:2466:778527 (system bus name :1.11, &lt;br /&gt;
 object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)&lt;br /&gt;
** &#039;&#039;&#039;auth include common-auth&#039;&#039;&#039;&lt;br /&gt;
 $vi /etc/pam.d/common-auth&lt;br /&gt;
  #auth    [success=1 default=ignore]      pam_unix.so nullok_secure&lt;br /&gt;
  auth    [success=0 default=ignore]      pam_unix.so nullok_secure&lt;br /&gt;
&lt;br /&gt;
 $ pkexec cat /var/log/auth.log &lt;br /&gt;
 ==== AUTHENTICATING FOR org.freedesktop.policykit.exec ===&lt;br /&gt;
 Authentication is needed to run `/bin/cat&#039; as the super user&lt;br /&gt;
 Authenticating as: root&lt;br /&gt;
 Password: &lt;br /&gt;
 polkit-agent-helper-1: pam_authenticate failed: Permission denied&lt;br /&gt;
 Error: Permission denied&lt;br /&gt;
 ==== AUTHENTICATION FAILED ===&lt;br /&gt;
 Error executing command as another user: Not authorized&lt;br /&gt;
 &lt;br /&gt;
 This incident has been reported.&lt;br /&gt;
&lt;br /&gt;
log information in /var/log/auth.log&lt;br /&gt;
 Jul 14 22:23:24 emenlow pkexec[2515]: yxf: Error executing command as another user: Not authorized [USER=root] [TTY=/dev/pts/0] [CWD=/] [COMMAND=/bin/cat /var/log/auth.log]&lt;br /&gt;
** &#039;&#039;&#039;account include common-account&#039;&#039;&#039;&lt;br /&gt;
 $ vi /etc/pam.d/common-account&lt;br /&gt;
 #account [success=1 new_authtok_reqd=done default=ignore]        pam_unix.so&lt;br /&gt;
 account [success=0 new_authtok_reqd=done default=ignore]        pam_unix.so&lt;br /&gt;
&lt;br /&gt;
 $ pkexec cat /var/log/auth.log &lt;br /&gt;
 ==== AUTHENTICATING FOR org.freedesktop.policykit.exec ===&lt;br /&gt;
 Authentication is needed to run `/bin/cat&#039; as the super user&lt;br /&gt;
 Authenticating as: root&lt;br /&gt;
 Password: &lt;br /&gt;
 polkit-agent-helper-1: pam_acct_mgmt failed: Permission denied&lt;br /&gt;
 Error: Permission denied&lt;br /&gt;
 ==== AUTHENTICATION FAILED ===&lt;br /&gt;
 Error executing command as another user: Not authorized&lt;br /&gt;
&lt;br /&gt;
log information in /var/log/auth.log&lt;br /&gt;
 Jul 14 22:29:12 emenlow pkexec[2523]: yxf: Error executing command as another user: Not authorized [USER=root] [TTY=/dev/pts/0] [CWD=/] [COMMAND=/bin/cat /var/log/auth.log]&lt;br /&gt;
&lt;br /&gt;
** &#039;&#039;&#039;password include common-password&#039;&#039;&#039;&lt;br /&gt;
 It is no use for polkit. So I don&#039;t test it&lt;br /&gt;
** &#039;&#039;&#039;session include common-session&#039;&#039;&#039;&lt;br /&gt;
 $ vi /etc/pam.d/common-session&lt;br /&gt;
 #session [default=1]                     pam_permit.so&lt;br /&gt;
 session [default=0]                     pam_permit.so&lt;br /&gt;
&lt;br /&gt;
 $ pkexec cat /var/log/auth.log &lt;br /&gt;
 ==== AUTHENTICATING FOR org.freedesktop.policykit.exec ===&lt;br /&gt;
 Authentication is needed to run `/bin/cat&#039; as the super user&lt;br /&gt;
 Authenticating as: root&lt;br /&gt;
 Password: &lt;br /&gt;
 ==== AUTHENTICATION COMPLETE ===&lt;br /&gt;
 pam_open_session() failed: Permission denied&lt;br /&gt;
&lt;br /&gt;
log information in /var/log/auth.log&lt;br /&gt;
 Jul 14 22:35:51 emenlow polkitd(authority=local): Unregistered Authentication Agent for unix-process:2466:778527 (system bus name :1.17, &lt;br /&gt;
 object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)&lt;br /&gt;
&lt;br /&gt;
=== screen ===&lt;br /&gt;
screen use pam to authenticate users during unlock terminal. Its configure file screen comes from Fedora and replace system-auth with common-auth&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
&lt;br /&gt;
First start screen:&lt;br /&gt;
  root@qemux86:/etc/pam.d# screen&lt;br /&gt;
it will show some information about screen, just press Space or Enter and it will give a screen terminal:&lt;br /&gt;
  root@qemux86:/etc/pam.d# &lt;br /&gt;
then press &amp;quot;Ctrl+a x&amp;quot; will lock the screen terminal and show:&lt;br /&gt;
    &lt;br /&gt;
  Screen used by root &amp;lt;root&amp;gt;.&lt;br /&gt;
  Password:&lt;br /&gt;
&lt;br /&gt;
In another root terminal, clear the root&#039;s password:&lt;br /&gt;
  password -d root&lt;br /&gt;
&lt;br /&gt;
modify one line in common-auth&lt;br /&gt;
  auth	[success=1 default=ignore]	pam_unix.so nullok_secure&lt;br /&gt;
with&lt;br /&gt;
  auth	[success=1 default=ignore]	pam_unix.so debug&lt;br /&gt;
option nullok_secure will allow users who has blank password login, after remove it these users are not allowed to login.&lt;br /&gt;
&lt;br /&gt;
Back to the screen terminal, press &amp;lt;Enter&amp;gt;(because root&#039;s password is blank now) will fail: &lt;br /&gt;
  Screen used by root &amp;lt;root&amp;gt;.&lt;br /&gt;
  Password:&lt;br /&gt;
  Screen used by root &amp;lt;root&amp;gt;.&lt;br /&gt;
  Password:&lt;br /&gt;
&lt;br /&gt;
then modify the line in common-auth with &lt;br /&gt;
  auth	[success=1 default=ignore]	pam_unix.so nullok_secure debug&lt;br /&gt;
&lt;br /&gt;
On the screen terminal press &amp;lt;Enter&amp;gt; again it unlock the terminal.&lt;br /&gt;
&lt;br /&gt;
the log in /var/log/auth.log:&lt;br /&gt;
  Jul 11 14:14:14 qemux86 screen: pam_unix(screen:auth): authentication failure; logname=root uid=0 euid=0 tty= ruser= rhost=  user=root&lt;br /&gt;
&lt;br /&gt;
=== shadow ===&lt;br /&gt;
==== chage ====&lt;br /&gt;
/etc/pam.d/chage: replace system-auth with common-password&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth		sufficient	pam_rootok.so&lt;br /&gt;
  account	required	pam_permit.so&lt;br /&gt;
  password	include		common-auth(common-password)&lt;br /&gt;
* test pam_rootok.so&lt;br /&gt;
add the only option for pam_rootok.so&lt;br /&gt;
  auth		sufficient	pam_rootok.so debug&lt;br /&gt;
&lt;br /&gt;
run command chage as root:&lt;br /&gt;
  root@qemux86:/etc/pam.d# chage -m 10  test&lt;br /&gt;
&lt;br /&gt;
log info in /var/log/message shows pam_rootok.so return success:&lt;br /&gt;
  Jul 12 06:55:18 qemux86 authpriv.debug chage[575]: pam_rootok(chage:auth): root check succeeded&lt;br /&gt;
  Jul 12 06:55:18 qemux86 authpriv.info chage[575]: changed password expiry for test&lt;br /&gt;
&lt;br /&gt;
* pam_unix.so&lt;br /&gt;
The password component of pam_unix.so performs the task of updating the user´s password. And chage changes user password expiry information.&lt;br /&gt;
&lt;br /&gt;
No test point.&lt;br /&gt;
&lt;br /&gt;
==== chfn ====&lt;br /&gt;
/etc/pam.d/chfn&lt;br /&gt;
  auth	    sufficient	pam_rootok.so&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
  account    include      common-account&lt;br /&gt;
  session    include      common-session&lt;br /&gt;
add option debug to pam_rootok.so&lt;br /&gt;
  auth	    sufficient	pam_rootok.so debug&lt;br /&gt;
&lt;br /&gt;
* pam_rootok.so&lt;br /&gt;
run command chfn as root:&lt;br /&gt;
  root@qemux86:/etc/pam.d# chfn -f testyayay test&lt;br /&gt;
&lt;br /&gt;
log info in /var/log/message shows pam_rootok.so return success:&lt;br /&gt;
  Jul 12 07:22:59 qemux86 authpriv.debug chfn[638]: pam_rootok(chfn:auth): root check succeeded&lt;br /&gt;
  Jul 12 07:22:59 qemux86 authpriv.info chfn[638]: changed user &#039;test&#039; information&lt;br /&gt;
&lt;br /&gt;
* pam_unix.so&lt;br /&gt;
the content of common-auth are shown at section &amp;quot;Common configure files&amp;quot;&lt;br /&gt;
&lt;br /&gt;
comment the configure file chfn pam_rootok.so line, because it will make pam return success:&lt;br /&gt;
&lt;br /&gt;
  #auth		sufficient	pam_rootok.so&lt;br /&gt;
&lt;br /&gt;
and modify the pam_unix.so line in common-auth to remove nullok_secure:&lt;br /&gt;
&lt;br /&gt;
  auth	[success=1 default=ignore]	pam_unix.so debug&lt;br /&gt;
&lt;br /&gt;
run commands:&lt;br /&gt;
&lt;br /&gt;
  root@qemux86:/etc/pam.d# passwd -d root &lt;br /&gt;
  root@qemux86:/etc/pam.d# chfn -f testself test # test is a unprivileged user&lt;br /&gt;
  Password: &lt;br /&gt;
  chfn: PAM authentication failed&lt;br /&gt;
&lt;br /&gt;
log in /var/log/message:&lt;br /&gt;
&lt;br /&gt;
  Jul 12 07:53:16 qemux86 authpriv.notice chfn[673]: pam_unix(chfn:auth): authentication failure; logname=root uid=0 euid=0 tty= ruser= rhost=  user=root&lt;br /&gt;
&lt;br /&gt;
==== chgpasswd ====&lt;br /&gt;
/etc/pam.d/chgpasswd(need patch)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth		sufficient	pam_rootok.so&lt;br /&gt;
  account	required	pam_permit.so&lt;br /&gt;
  password	include		system-auth&lt;br /&gt;
&lt;br /&gt;
test pam_rootok.so and pam_unix.so(common-password) refer to test steps in chfn&lt;br /&gt;
&lt;br /&gt;
==== chpasswd ====&lt;br /&gt;
/etc/pam.d/chpasswd&lt;br /&gt;
  password   include      common-password&lt;br /&gt;
common-password are listed before, we remove the pam_unix.so option nullok_secure and add audit:&lt;br /&gt;
  password	[success=1 default=ignore]	pam_unix.so  audit&lt;br /&gt;
&lt;br /&gt;
commands to test:&lt;br /&gt;
  root@qemux86:/etc/pam.d# chpasswd&lt;br /&gt;
  test:&lt;br /&gt;
  Press Ctrl+d, the follow are terminal output:&lt;br /&gt;
  No password supplied&lt;br /&gt;
  No password supplied&lt;br /&gt;
  No password supplied&lt;br /&gt;
  chpasswd: (user test) pam_chauthtok() failed, error:&lt;br /&gt;
  Authentication token manipulation error&lt;br /&gt;
  chpasswd: (line 1, user test) password not changed&lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 15 04:53:39 qemux86 authpriv.notice chpasswd[844]: pam_warn(chpasswd:auth): function=[pam_sm_authenticate] service=[chpasswd] terminal=[&amp;lt;unknown&amp;gt;] user=[root] ruser=[&amp;lt;unknown&amp;gt;] rhost=[&amp;lt;unknown&amp;gt;]&lt;br /&gt;
  Jul 15 04:53:39 qemux86 authpriv.notice chpasswd[844]: pam_warn(chpasswd:account): function=[pam_sm_acct_mgmt] service=[chpasswd] terminal=[&amp;lt;unknown&amp;gt;] user=[root] ruser=[&amp;lt;unknown&amp;gt;] rhost=[&amp;lt;unknown&amp;gt;]&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.debug chpasswd[844]: pam_unix(chpasswd:chauthtok): username [test] obtained&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.debug chpasswd[844]: pam_unix(chpasswd:chauthtok): username [test] obtained&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.debug chpasswd[844]: pam_unix(chpasswd:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.debug chpasswd[844]: pam_unix(chpasswd:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.debug chpasswd[844]: pam_unix(chpasswd:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 04:53:41 qemux86 authpriv.notice chpasswd[844]: pam_unix(chpasswd:chauthtok): new password not acceptable&lt;br /&gt;
&lt;br /&gt;
==== chsh ====&lt;br /&gt;
/etc/pam.d/chsh&lt;br /&gt;
  auth       required     pam_shells.so&lt;br /&gt;
  auth       sufficient      pam_rootok.so&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
  account    include      common-account&lt;br /&gt;
  session    include      common-session&lt;br /&gt;
* pam_shells.so&lt;br /&gt;
pam_shells only allows access to the system if the users shell is listed in /etc/shells. It also checks if /etc/shells is a plain file and not world writable.&lt;br /&gt;
&lt;br /&gt;
check /etc/shells first:&lt;br /&gt;
  qemux86:~$ ls -l /etc/shells &lt;br /&gt;
  -rw-r--r--    1 root     root           109 Jul 12 06:05 /etc/shells&lt;br /&gt;
  qemux86:~$ cat /etc/shells&lt;br /&gt;
  # /etc/shells: valid login shells&lt;br /&gt;
  /bin/sh&lt;br /&gt;
  /bin/ash&lt;br /&gt;
  /bin/bash&lt;br /&gt;
  /bin/dash&lt;br /&gt;
  /bin/ksh&lt;br /&gt;
  /usr/bin/ksh&lt;br /&gt;
  /usr/bin/screen&lt;br /&gt;
  qemux86:~$ &lt;br /&gt;
&lt;br /&gt;
login as a unprivileged user, the correct process is:&lt;br /&gt;
  qemux86:~$ chsh -s /bin/ash&lt;br /&gt;
  Password: &amp;lt;-- Enter password here&lt;br /&gt;
  qemux86:~$ &lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 15 06:15:18 qemux86 authpriv.debug chsh[1283]: pam_rootok(chsh:auth): root check failed&lt;br /&gt;
  Jul 15 06:15:21 qemux86 authpriv.info chsh[1283]: changed user &#039;test&#039; shell to &#039;/bin/ash&#039;&lt;br /&gt;
&lt;br /&gt;
now remove /bin/ash from /etc/shells, then run the same command:&lt;br /&gt;
  qemux86:~$ chsh -s /bin/ash&lt;br /&gt;
  Password: &amp;lt;-- Enter password here&lt;br /&gt;
  chsh: /bin/ash is an invalid shell.&lt;br /&gt;
  qemux86:~$ &lt;br /&gt;
&lt;br /&gt;
if you make /etc/shells is writable to all people, chsh will fail with syslog info:&lt;br /&gt;
  Jul 15 05:38:38 qemux86 authpriv.err chsh[1091]: pam_shells(chsh:auth): /etc/shells is either world writable or not a normal file&lt;br /&gt;
&lt;br /&gt;
* pam_rootok.so&lt;br /&gt;
modify pam_rootok.so item:&lt;br /&gt;
  auth       required     pam_rootok.so debug&lt;br /&gt;
&lt;br /&gt;
then unprivileged users can&#039;t change their shell.&lt;br /&gt;
  qemux86:~$ chsh -s /bin/ash&lt;br /&gt;
  Password: &lt;br /&gt;
  chsh: PAM authentication failed&lt;br /&gt;
  qemux86:~$ &lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 15 06:43:14 qemux86 authpriv.debug chsh[1350]: pam_rootok(chsh:auth): root check failed&lt;br /&gt;
&lt;br /&gt;
* pam_unix.so&lt;br /&gt;
**pam_unix in common-auth: please refer to sudo tests&lt;br /&gt;
**pam_unix in common-account and common-password don&#039;t have test point.&lt;br /&gt;
&lt;br /&gt;
==== groupadd ====&lt;br /&gt;
/etc/pam.d/groupadd:&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
please refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
*pam_unix.so in common-password doesn&#039;t has test point&lt;br /&gt;
&lt;br /&gt;
==== groupdel ====&lt;br /&gt;
/etc/pam.d/groupdel(need patch)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
* pam_rootok&lt;br /&gt;
please refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
==== groupmems ====&lt;br /&gt;
/etc/pam.d/groupmems&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
&lt;br /&gt;
*pam_rootok:&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
*pam_unix in common-password doesn&#039;t has test point&lt;br /&gt;
&lt;br /&gt;
==== groupmod ====&lt;br /&gt;
/etc/pam.d/groupmod&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         common-password&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-password&lt;br /&gt;
no test point&lt;br /&gt;
&lt;br /&gt;
==== login ====&lt;br /&gt;
/etc/pam.d/login&lt;br /&gt;
  auth       optional     pam_faildelay.so  delay=3000000&lt;br /&gt;
  auth       [success=ok ignore=ignore user_unknown=ignore default=die]  pam_securetty.so&lt;br /&gt;
  auth       requisite    pam_nologin.so&lt;br /&gt;
  session    required     pam_env.so readenv=1&lt;br /&gt;
  session    required     pam_env.so readenv=1 envfile=/etc/default/locale&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
  auth       optional     pam_group.so&lt;br /&gt;
  session    required     pam_limits.so                                      &lt;br /&gt;
  session    optional     pam_lastlog.so                                     &lt;br /&gt;
  session    optional     pam_motd.so                              &lt;br /&gt;
  session    optional     pam_mail.so standard                    &lt;br /&gt;
                                                              &lt;br /&gt;
  account    include      common-account                        &lt;br /&gt;
  password   include      common-password                       &lt;br /&gt;
  session    include      common-session&lt;br /&gt;
&lt;br /&gt;
* pam_faildelay&lt;br /&gt;
this plugin an be used to set the delay on failure per-application. We increase &amp;quot;delay&amp;quot; to make it more obviously&lt;br /&gt;
  auth       optional   pam_faildelay.so  delay=10000000&lt;br /&gt;
&lt;br /&gt;
run login as root:&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: &#039;&#039;root&#039;&#039;&lt;br /&gt;
  Password: &#039;&#039;&amp;lt;-- enter a wrong password here, then will wait for 10 seconds to show next &amp;quot;login:&amp;quot;&#039;&#039;&lt;br /&gt;
  &lt;br /&gt;
  Login incorrect&lt;br /&gt;
  qemux86 login: &lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 17 07:22:17 qemux86 authpriv.notice login[2223]: pam_unix(login:auth): authentication failure; logname=root uid=0 euid=0 tty=/dev/pts/2 ruser= rhost=  user=root&lt;br /&gt;
  Jul 17 07:22:26 qemux86 authpriv.notice login[2223]: FAILED LOGIN (1) on &#039;/dev/pts/2&#039; FOR &#039;root&#039;, Authentication failure&lt;br /&gt;
&lt;br /&gt;
* pam_securetty&lt;br /&gt;
pam_securetty allows root logins only if the user is logging in on a &amp;quot;secure&amp;quot; tty, as defined by the listing in /etc/securetty.&lt;br /&gt;
&lt;br /&gt;
test steps:&lt;br /&gt;
  # ssh to yocto linux&lt;br /&gt;
  $ ssh root@192.168.7.2&lt;br /&gt;
  root@qemux86:~# tty &lt;br /&gt;
  /dev/pts/1&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: root&lt;br /&gt;
                      &amp;lt;-- don&#039;t ask for password, failed directly &lt;br /&gt;
  Login incorrect&lt;br /&gt;
  qemux86 login: &lt;br /&gt;
&lt;br /&gt;
syslog info&lt;br /&gt;
  Jul 17 07:52:32 qemux86 authpriv.warn login[2341]: pam_securetty(login:auth): access denied: tty &#039;pts/1&#039; is not secure !&lt;br /&gt;
  Jul 17 07:52:35 qemux86 authpriv.notice login[2341]: FAILED LOGIN (1) on &#039;/dev/pts/1&#039; FOR &#039;root&#039;, Authentication failure&lt;br /&gt;
&lt;br /&gt;
Then add &amp;quot;pts/1&amp;quot; to file /etc/securetty, run commonds:&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: &#039;&#039;root&#039;&#039;&lt;br /&gt;
  Password: &lt;br /&gt;
  Last login: Sun Jul 17 07:52:21 UTC 2011 from k-desktop.local on pts/1&lt;br /&gt;
  root@qemux86:~# &lt;br /&gt;
&lt;br /&gt;
syslog info&lt;br /&gt;
  Jul 17 07:56:00 qemux86 authpriv.notice login[2348]: ROOT LOGIN  on &#039;/dev/pts/1&#039;&lt;br /&gt;
&lt;br /&gt;
* pam_nologin&lt;br /&gt;
pam_nologin prevents non-root users from logging into the system when /etc/nologin exists. &lt;br /&gt;
&lt;br /&gt;
test steps&lt;br /&gt;
  root@qemux86:~# ls /etc/nologin&lt;br /&gt;
  ls: /etc/nologin: No such file or directory&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: test&lt;br /&gt;
  Last login: Sun Jul 17 07:19:24 UTC 2011 on pts/2&lt;br /&gt;
  qemux86:~$ logout&lt;br /&gt;
  root@qemux86:~# touch /etc/nologin&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: test&lt;br /&gt;
  &lt;br /&gt;
  &lt;br /&gt;
  Login incorrect&lt;br /&gt;
  qemux86 login: &lt;br /&gt;
&lt;br /&gt;
syslog info&lt;br /&gt;
  Jul 17 08:08:07 qemux86 authpriv.info login[2366]: pam_unix(login:session): session opened for user test by root(uid=0)&lt;br /&gt;
  Jul 17 08:08:08 qemux86 authpriv.info login[2366]: pam_unix(login:session): session closed for user test&lt;br /&gt;
  Jul 17 08:08:51 qemux86 authpriv.notice login[2371]: FAILED LOGIN (1) on &#039;/dev/pts/1&#039; FOR &#039;test&#039;, Authentication failure&lt;br /&gt;
&lt;br /&gt;
* pam_env&lt;br /&gt;
refer to su tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-auth&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_group&lt;br /&gt;
pam_group grants group memberships to the user. Its configure file is /etc/security/group.conf.&lt;br /&gt;
&lt;br /&gt;
First get your current tty by run&lt;br /&gt;
  root@qemux86:/etc/pam.d# tty&lt;br /&gt;
  /dev/pts/2&lt;br /&gt;
  root@qemux86:/etc/pam.d# &lt;br /&gt;
&lt;br /&gt;
then add a item to /etc/security/group.conf&lt;br /&gt;
  login; pts/* ;%root;Al0000-2400;&#039;&#039;&#039;plugdev,test &lt;br /&gt;
&#039;&#039;&#039;&lt;br /&gt;
after that run commands&lt;br /&gt;
  root@qemux86:/etc/pam.d# id&lt;br /&gt;
  uid=0(root) gid=0(root) groups=0(root)&lt;br /&gt;
  root@qemux86:/etc/pam.d# login&lt;br /&gt;
  qemux86 login: root&lt;br /&gt;
  &lt;br /&gt;
  Password: &lt;br /&gt;
  Last login: Mon Jul 18 00:20:47 UTC 2011 on pts/2&lt;br /&gt;
  root@qemux86:~# id&lt;br /&gt;
  uid=0(root) gid=0(root) groups=0(root),&#039;&#039;&#039;46(plugdev),1001(test)&#039;&#039;&#039;&lt;br /&gt;
  root@qemux86:~#&lt;br /&gt;
&lt;br /&gt;
* pam_limits&lt;br /&gt;
pam_limits sets limits on the system resources that can be obtained in a user-session. &lt;br /&gt;
&lt;br /&gt;
Its default configure file is /etc/security/limits.conf, modify it with&lt;br /&gt;
  test        -       maxlogins       1&lt;br /&gt;
&lt;br /&gt;
Login unprivileged user &amp;quot;test&amp;quot;&lt;br /&gt;
  root@qemux86:/etc/pam.d# login&lt;br /&gt;
  qemux86 login: &#039;&#039;&#039;test&#039;&#039;&#039;&lt;br /&gt;
  Last login: Sun Jul 17 08:08:07 UTC 2011 on pts/1&lt;br /&gt;
  qemux86:~$  &lt;br /&gt;
And login in another terminal&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: test&lt;br /&gt;
  Too many logins for &#039;test&#039;.&lt;br /&gt;
  Last login: Mon Jul 18 01:21:54 UTC 2011 on pts/2&lt;br /&gt;
  &lt;br /&gt;
  Permission denied&lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.debug login[2668]: pam_limits(login:session): reading settings from &#039;/etc/security/limits.conf&#039;&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.debug login[2668]: pam_limits(login:session): process_limit: processing - maxlogins 1 for USER&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.debug login[2668]: pam_limits(login:session): checking logins for &#039;test&#039; (maximum of 1)&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.warn login[2668]: pam_limits(login:session): Too many logins (max 1) for test&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.info login[2668]: pam_unix(login:session): session opened for user test by root(uid=0)&lt;br /&gt;
  Jul 18 01:39:55 qemux86 authpriv.err login[2668]: Permission denied&lt;br /&gt;
&lt;br /&gt;
* pam_lastlog&lt;br /&gt;
pam_lastlog is to display date of last login.&lt;br /&gt;
add options to pam_lastlog&lt;br /&gt;
  session    optional   pam_lastlog.so debug nodate&lt;br /&gt;
&lt;br /&gt;
run commands and you can check that no last login date information shows&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: test&lt;br /&gt;
  Last login: on pts/2&lt;br /&gt;
  qemux86:~$&lt;br /&gt;
&lt;br /&gt;
* pam_motd&lt;br /&gt;
pam_motd can be used to display arbitrary motd (message of the day) files after a successful login. By default the /etc/motd file is shown.&lt;br /&gt;
&lt;br /&gt;
test steps:&lt;br /&gt;
  root@qemux86:~# cat /etc/motd&lt;br /&gt;
  root@qemux86:~# echo &amp;quot;Welcome to Yocto&amp;quot; &amp;gt; /etc/motd&lt;br /&gt;
  root@qemux86:~# login&lt;br /&gt;
  qemux86 login: root&lt;br /&gt;
  Password: &lt;br /&gt;
  Last login: on pts/1&lt;br /&gt;
  &#039;&#039;&#039;Welcome to Yocto&#039;&#039;&#039;&lt;br /&gt;
  root@qemux86:~#&lt;br /&gt;
&lt;br /&gt;
* pam_mail&lt;br /&gt;
refer to su tests&lt;br /&gt;
&lt;br /&gt;
==== newusers ====&lt;br /&gt;
/etc/pam.d/newusers&lt;br /&gt;
  password   include      common-password&lt;br /&gt;
&lt;br /&gt;
*pam_unix&lt;br /&gt;
modify the pam_unix item in common-password&lt;br /&gt;
  password        [success=1 default=ignore]      pam_unix.so debug &lt;br /&gt;
&lt;br /&gt;
run command:&lt;br /&gt;
  root@qemux86:~# newusers&lt;br /&gt;
  a::::::[Press key Enter]&lt;br /&gt;
  [Press Ctrl+d]&lt;br /&gt;
  No password supplied&lt;br /&gt;
  No password supplied&lt;br /&gt;
  No password supplied&lt;br /&gt;
  newusers: (user a) pam_chauthtok() failed, error:&lt;br /&gt;
  Authentication token manipulation error&lt;br /&gt;
  newusers: (line 1, user a) password not changed&lt;br /&gt;
&lt;br /&gt;
syslog info:&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.debug newusers[1560]: pam_unix(newusers:chauthtok): username [a] obtained&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.debug newusers[1560]: pam_unix(newusers:chauthtok): username [a] obtained&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.debug newusers[1560]: pam_unix(newusers:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.debug newusers[1560]: pam_unix(newusers:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.debug newusers[1560]: pam_unix(newusers:chauthtok): bad authentication token&lt;br /&gt;
  Jul 15 09:50:17 qemux86 authpriv.notice newusers[1560]: pam_unix(newusers:chauthtok): new password not acceptable&lt;br /&gt;
&lt;br /&gt;
==== passwd ====&lt;br /&gt;
/etc/pam.d/passwd&lt;br /&gt;
  password   include      common-password&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-password&lt;br /&gt;
modify the item to make password length not less than 4 characters:&lt;br /&gt;
  password        [success=1 default=ignore]      pam_unix.so minlen=4 debug&lt;br /&gt;
&lt;br /&gt;
run test commands:&lt;br /&gt;
  qemux86:~$ passwd&lt;br /&gt;
  Changing password for test.&lt;br /&gt;
  (current) UNIX password: &amp;lt;-- input 123 here&lt;br /&gt;
  Enter new UNIX password: &lt;br /&gt;
  Retype new UNIX password: &lt;br /&gt;
  You must choose a longer password&lt;br /&gt;
  Enter new UNIX password: &amp;lt;-- input 1234 here&lt;br /&gt;
  Retype new UNIX password: &lt;br /&gt;
  passwd: password updated successfully&lt;br /&gt;
  qemux86:~$ &lt;br /&gt;
&lt;br /&gt;
syslog doesn&#039;t has detail informatiaon&lt;br /&gt;
  Jul 17 02:00:39 qemux86 authpriv.debug passwd[1649]: pam_unix(passwd:chauthtok): username [test] obtained&lt;br /&gt;
  Jul 17 02:00:41 qemux86 authpriv.debug passwd[1649]: pam_unix(passwd:chauthtok): username [test] obtained&lt;br /&gt;
  Jul 17 02:00:49 qemux86 authpriv.notice passwd[1649]: pam_unix(passwd:chauthtok): password changed for test&lt;br /&gt;
&lt;br /&gt;
==== su ====&lt;br /&gt;
/etc/pam.d/su&lt;br /&gt;
  auth       sufficient   pam_rootok.so&lt;br /&gt;
  session    required     pam_env.so readenv=1&lt;br /&gt;
  session    required     pam_env.so readenv=1 envfile=/etc/default/locale&lt;br /&gt;
  session    optional     pam_mail.so nopen&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
  account    include      common-account&lt;br /&gt;
  session    include      common-session&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_env&lt;br /&gt;
option readenv=1 means read configure file pointed by variable envfile, default is /etc/environment&lt;br /&gt;
&lt;br /&gt;
We will add a variable named YOCTO to /etc/environment.&lt;br /&gt;
First we will check there is no var YOCTO after su&lt;br /&gt;
  root@qemux86:~# su test&lt;br /&gt;
  test@qemux86:/home/root$ echo $YOCTO&lt;br /&gt;
&lt;br /&gt;
  test@qemux86:/home/root$ &lt;br /&gt;
&lt;br /&gt;
after add YOCTO=yoctolinux to /etc/environment, then test again&lt;br /&gt;
  root@qemux86:~# su test&lt;br /&gt;
  test@qemux86:/home/root$ echo $YOCTO&lt;br /&gt;
  yoctolinux&lt;br /&gt;
  test@qemux86:/home/root$ &lt;br /&gt;
&lt;br /&gt;
* pam_mail&lt;br /&gt;
The mailx in Yocto can NOT run correctly, so didn&#039;t test it. &lt;br /&gt;
Test steps should be as follows. &lt;br /&gt;
First remove option nopen which prevents show user mails&lt;br /&gt;
  #session    optional   pam_mail.so nopen&lt;br /&gt;
  session    optional   pam_mail.so &lt;br /&gt;
&lt;br /&gt;
Then mail a user, such as root(run test on Fedora 14)&lt;br /&gt;
  [packager@F14 ~]$ mail root&lt;br /&gt;
  Subject: &#039;&#039;test&#039;&#039;&lt;br /&gt;
  &#039;&#039;test&#039;&#039;&lt;br /&gt;
  EOT&lt;br /&gt;
  [packager@F14 ~]$ export LANG=C&lt;br /&gt;
  [packager@F14 ~]$ su -&lt;br /&gt;
  Password: &lt;br /&gt;
  &#039;&#039;&#039;You have old mail in folder /var/mail/root.&#039;&#039;&#039;&lt;br /&gt;
  [root@F14 ~]#&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-auth&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-account/common-session has no test point&lt;br /&gt;
&lt;br /&gt;
==== useradd ====&lt;br /&gt;
/etc/pam.d/useradd(need patch)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-password:&lt;br /&gt;
no test point&lt;br /&gt;
&lt;br /&gt;
==== userdel ====&lt;br /&gt;
/etc/pam.d/userdel(need patch)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-password: &lt;br /&gt;
no test point&lt;br /&gt;
&lt;br /&gt;
==== usermod ==== &lt;br /&gt;
/etc/pam.d/usermod(need patch)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth            sufficient      pam_rootok.so&lt;br /&gt;
  account         required        pam_permit.so&lt;br /&gt;
  password        include         system-auth(common-password)&lt;br /&gt;
&lt;br /&gt;
* pam_rootok&lt;br /&gt;
refer to chfn tests&lt;br /&gt;
&lt;br /&gt;
* pam_unix in common-password&lt;br /&gt;
no test point&lt;br /&gt;
&lt;br /&gt;
=== sudo ===&lt;br /&gt;
*/etc/pam.d/sudo comes from Fedora, and replace system-auth with common-auth&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth       include      common-auth&lt;br /&gt;
  account    include      common-account&lt;br /&gt;
  password   include      common-password&lt;br /&gt;
  session    required     pam_keyinit.so revoke&lt;br /&gt;
  session    required     pam_limits.so&lt;br /&gt;
and content of common-auth has been show above.&lt;br /&gt;
&lt;br /&gt;
*test pam plugins&lt;br /&gt;
**pam_unix.so&lt;br /&gt;
modify common-auth:&lt;br /&gt;
  auth    [success=1 default=ignore]      pam_unix.so debug&lt;br /&gt;
then unpriviledge user can NOT run sudo with blank password&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  Password:&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Password:&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Password:&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  sudo: 3 incorrect password attempts&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  qemux86:~$&lt;br /&gt;
&lt;br /&gt;
log in /var/log/auth.log:&lt;br /&gt;
  Jul  8 16:39:04 qemux86 sudo: pam_unix(sudo:auth): authentication failure; logname=test-pam uid=0 euid=0 tty=/dev/pts/1 ruser=test-pam rhost=  user=test-pam&lt;br /&gt;
  Jul  8 16:39:14 qemux86 sudo: test-pam : 3 incorrect password attempts ; TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
  Jul  8 16:39:31 qemux86 sudo: pam_warn(sudo:account): function=[pam_sm_acct_mgmt] service=[sudo] terminal=[/dev/pts/1] user=[test-pam] ruser=[test-pam] rhost=[&amp;lt;unknown&amp;gt;]&lt;br /&gt;
  Jul  8 16:39:31 qemux86 sudo: test-pam : TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
&lt;br /&gt;
**pam_deny.so&lt;br /&gt;
mv line&lt;br /&gt;
  auth    requisite                       pam_deny.so&lt;br /&gt;
to the head of file, unprivilege user can NOT sudo any more:&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  sudo: 3 incorrect password attempts&lt;br /&gt;
  qemux86:~$&lt;br /&gt;
&lt;br /&gt;
log in /var/log/auth.log:&lt;br /&gt;
  Jul  7 14:03:29 qemux86 sudo: test-pam : 3 incorrect password attempts ; TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
&lt;br /&gt;
**pam_permit.so&lt;br /&gt;
comment this line&lt;br /&gt;
  auth    required                        pam_permit.so&lt;br /&gt;
&lt;br /&gt;
sudo will fail without ask user to enter password:&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  Sorry, try again.&lt;br /&gt;
  sudo: 3 incorrect password attempts&lt;br /&gt;
  qemux86:~$&lt;br /&gt;
&lt;br /&gt;
log in /var/log/auth.log:&lt;br /&gt;
  Jul  7 12:43:22 qemux86 sudo: test-pam : 3 incorrect password attempts ; TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm -f /test&lt;br /&gt;
&lt;br /&gt;
**pam_limits.so&lt;br /&gt;
add line to /etc/security/limits.conf&lt;br /&gt;
  *        -       nofile       3&lt;br /&gt;
then sudo will fail:&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  Inconsistency detected by ld.so: dl-deps.c: 622: _dl_map_object_deps: Assertion `nlist &amp;gt; 1&#039; failed!&lt;br /&gt;
&lt;br /&gt;
modify the line:&lt;br /&gt;
  *        -       nofile       4&lt;br /&gt;
  qemux86:~$ sudo rm /test&lt;br /&gt;
  qemux86:~$&lt;br /&gt;
&lt;br /&gt;
log in /var/log/auth.log:&lt;br /&gt;
  Jul  8 14:24:41 qemux86 sudo: pam_warn(sudo:account): function=[pam_sm_acct_mgmt] service=[sudo] terminal=[/dev/pts/1] user=[test-pam] ruser=[test-pam] rhost=[&amp;lt;unknown&amp;gt;]&lt;br /&gt;
  Jul  8 14:24:41 qemux86 sudo: test-pam : TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
  Jul  8 14:24:41 qemux86 sudo: pam_limits(sudo:session): reading settings from &#039;/etc/security/limits.conf&#039;&lt;br /&gt;
  Jul  8 14:24:41 qemux86 sudo: pam_limits(sudo:session): process_limit: processing - nofile 3 for DEFAULT&lt;br /&gt;
  Jul  8 14:24:50 qemux86 sudo: test-pam : TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
  Jul  8 14:24:50 qemux86 sudo: pam_limits(sudo:session): reading settings from &#039;/etc/security/limits.conf&#039;&lt;br /&gt;
  Jul  8 14:24:50 qemux86 sudo: pam_limits(sudo:session): process_limit: processing - nofile 4 for DEFAULT&lt;br /&gt;
&lt;br /&gt;
** pam_keyinit&lt;br /&gt;
add option debug&lt;br /&gt;
  session    optional     pam_keyinit.so revoke debug&lt;br /&gt;
&lt;br /&gt;
log shows pam_keyinit was called:&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: pam_warn(sudo:account): function=[pam_sm_acct_mgmt] service=[sudo] terminal=[/dev/pts/1] user=[test-pam] ruser=[test-pam] rhost=[&amp;lt;unknown&amp;gt;]&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: test-pam : TTY=pts/1 ; PWD=/home/test-pam ; USER=root ; COMMAND=/bin/rm /test&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: pam_keyinit(sudo:session): OPEN 1&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: pam_keyinit(sudo:session): UID:0 [0]  GID:0 [1000]&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: pam_keyinit(sudo:session): GET SESSION = 143761918&lt;br /&gt;
  Jul  7 14:13:39 qemux86 sudo: pam_keyinit(sudo:session): GET SESSION = 669161571&lt;br /&gt;
&lt;br /&gt;
according the source code pam_keyinit.c line 102 in function init_keyrings, the module return PAM_SUCCESS&lt;br /&gt;
&lt;br /&gt;
== Identify upstream PAM patches to use ==&lt;br /&gt;
After checking the Fedora develop repository, the following packages may need patches(only libpam need to upgrade, other patches are pam related configure file but they are absent in poky):&lt;br /&gt;
* libpam: need update from current 1.1.3 to 1.1.4 [https://www.redhat.com/archives/pam-list/2011-June/msg00013.html Release Notes]&lt;br /&gt;
* sudo: package sudo in Fedora provides /etc/pam.d/sudo and /etc/pam.d/sudo-i&lt;br /&gt;
** /etc/pam.d/sudo (Yocto use common-auth instead of system-auth)&lt;br /&gt;
  #%PAM-1.0&lt;br /&gt;
  auth       include      system-auth&lt;br /&gt;
  account    include      system-auth&lt;br /&gt;
  password   include      system-auth&lt;br /&gt;
  session    optional     pam_keyinit.so revoke&lt;br /&gt;
  session    required     pam_limits.so&lt;br /&gt;
&lt;br /&gt;
* screen: check Fedora screen.pam&lt;br /&gt;
&lt;br /&gt;
* util-linux: check Fedora source file util-linux-remote.pamd&lt;br /&gt;
&lt;br /&gt;
* at: check Fedora util-linux-remote.pamd&lt;br /&gt;
&lt;br /&gt;
* cups: check Fedora cups-1.1.16-system-auth.patch&lt;br /&gt;
&lt;br /&gt;
* openssh: check Fedora sshd.pam&lt;br /&gt;
&lt;br /&gt;
== PAM Unit Tests==&lt;br /&gt;
We use unit test cases provided by libpam itself, a subdirectory with name &amp;quot;xtests&amp;quot; under libpam source code. Right now we spit it as a sub-package libpam-xtests. After &amp;quot;bitbake libpam&amp;quot; you can find it under deploy directory. And it requires some packages:&lt;br /&gt;
    pam-plugin-debug  &lt;br /&gt;
    pam-plugin-access  &lt;br /&gt;
    pam-plugin-cracklib &lt;br /&gt;
    pam-plugin-time  &lt;br /&gt;
    pam-plugin-pwhistory  &lt;br /&gt;
    pam-plugin-succeed-if  &lt;br /&gt;
&lt;br /&gt;
All test cases are:&lt;br /&gt;
    tst-pam_dispatch1 tst-pam_dispatch2 tst-pam_dispatch3 \&lt;br /&gt;
    tst-pam_dispatch4 tst-pam_dispatch5 \&lt;br /&gt;
    tst-pam_cracklib1 tst-pam_cracklib2 \&lt;br /&gt;
    tst-pam_unix1 tst-pam_unix2 tst-pam_unix3 tst-pam_unix4 \&lt;br /&gt;
    tst-pam_access1 tst-pam_access2 tst-pam_access3 \&lt;br /&gt;
    tst-pam_access4 tst-pam_limits1 tst-pam_succeed_if1 \&lt;br /&gt;
    tst-pam_group1 tst-pam_authfail tst-pam_authsucceed \&lt;br /&gt;
    tst-pam_pwhistory1 tst-pam_time1&lt;br /&gt;
&lt;br /&gt;
On build machine after install package libpam-xtests, go to the xtexts directory and run tests&lt;br /&gt;
  export ALL_TESTS=&amp;quot;tst-pam_dispatch1 tst-pam_dispatch2 tst-pam_dispatch3 \&lt;br /&gt;
    tst-pam_dispatch4 tst-pam_dispatch5 \&lt;br /&gt;
    tst-pam_cracklib1 tst-pam_cracklib2 \&lt;br /&gt;
    tst-pam_unix1 tst-pam_unix2 tst-pam_unix3 tst-pam_unix4 \&lt;br /&gt;
    tst-pam_access1 tst-pam_access2 tst-pam_access3 \&lt;br /&gt;
    tst-pam_access4 tst-pam_limits1 tst-pam_succeed_if1 \&lt;br /&gt;
    tst-pam_group1 tst-pam_authfail tst-pam_authsucceed \&lt;br /&gt;
    tst-pam_pwhistory1 tst-pam_time1&amp;quot;&lt;br /&gt;
  cd /usr/share/Linux-PAM/xtests&lt;br /&gt;
  ./run-xtests.sh `pwd` $ALL_TESTS&lt;br /&gt;
&lt;br /&gt;
If you want to run sigle test case, just run (take tst-pam_time1 for example)&lt;br /&gt;
  ./run-xtests.sh . tst-pam_time1&lt;br /&gt;
&lt;br /&gt;
Two unit tests may NOT passed, they need some prerequisite:&lt;br /&gt;
* tst-pam_cracklib1&lt;br /&gt;
* tst-pam_cracklib2&lt;br /&gt;
**need /lib/security/pam_cracklib.so, need build cracklib first, and then libpam will check it and create pam-plugin-cracklib&lt;br /&gt;
**need /usr/share/cracklib/pw_dict.pwd file, please run command on host machine:&lt;br /&gt;
  cp /usr/share/cracklib/cracklib-small /tmp&lt;br /&gt;
  gzip /tmp/cracklib-small&lt;br /&gt;
  create-cracklib-dict /tmp/cracklib-small.gz&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
=== Packages dropped ===&lt;br /&gt;
At the beginning we got a list of packages that use pam. After more work, some of them are dropped.&lt;br /&gt;
* consolekit provides a pam plugin module pam_ck_connector.so and not the package that use pam. Drop it.&lt;br /&gt;
* gnome-keyring can&#039;t call configuration file like &amp;quot;/etc/pam.d/gnome-keyring&amp;quot; because it is called by other program like &amp;quot;gnome-screensave&amp;quot; and &amp;quot;gdm&amp;quot;. If we want test &amp;quot;pam_gnome_keyring.so&amp;quot;, we need write .bb files to cross-compile gnome-screensave or gdm. So drop it.&lt;br /&gt;
* util-linux: 3 programs chfn chsh and login in util-linux will use libpam. Right now these programs are provided by package shadow. In util-linux.inc, EXTRA_OECONF has option &amp;quot;--disable-login-utils &amp;quot; which will disable to build them. Drop it.&lt;br /&gt;
* mc: mc has remove package mcserv and dropped dependency on PAM already, but didn&#039;t remove checking security/pam_misc.h. Drop it. [http://www.midnight-commander.org/changeset/4816107a02ccbf6331534113e6ec0c8df84e24eb Official change log]&lt;br /&gt;
* libcap: if pam exists, libcap will create a pam plugin pam_cap.so to add a new front end for the authentication function. Because it is not a application, remove it from list.&lt;br /&gt;
* libuser: pam is libuser&#039;s build dependency, so remove it too.&lt;br /&gt;
* The busybox login has a option to use pam, but we use tinylogin&#039;s login right now (tinylogin also provides the su command)&lt;br /&gt;
* gettext only has a example &amp;quot;hello-c++-kde&amp;quot; use pam under source code directory, and it doen&#039;t be compiled and only copied to destination. So omit gettext.&lt;br /&gt;
* sysvinit has a patch contrib/notify-pam-dead.patch for /sbin/init to use pam, but the whole contrib directory didn&#039;t take part in compilation. Drop it.&lt;br /&gt;
* xserver: based on following 2 reason drop it.&lt;br /&gt;
** the code use pam is old. Add xserver to original list to be pam-enabled by &amp;quot;bzgrep&amp;quot;  tar balls. But in xserver the code to use pam only in os/utils.c function CheckUserAuthorization. No configure mechanism is provided to define macro USE_PAM to make the pam codes enabled. According to the comments, pam authentication only done for setuid servers (uid != euid). Our Xorg is not a setuid server, so we don&#039;t need it .&lt;br /&gt;
** Xorg in Fedora doesn&#039;t support pam. Once I check the xorg-x11-server.spec, and it installs a pam related configure file, so I thought it is pam enabled. But I check the executable file /usr/bin/Xorg , that /usr/bin/Xorg even doesn&#039;t link to libpam or libpam_misc. The config file &amp;quot;xserver&amp;quot; is also from Fedora 15,  because it is not supported by Fedora itself we don&#039;t have any reason to support the configure file in oe.&lt;br /&gt;
&lt;br /&gt;
=== Common configure files ===&lt;br /&gt;
When import pam related configure file for each package from Fedora, it may contains &amp;quot;include system-auth&amp;quot;. System-auth is the Fedora common configure file and it is autogenerated by command authconfig. It contain all 4 types(auth, account, session, password) rules. But in Yocto these common rules are seperated according pam type, and they are common-auth, common-account, common-session and common-password.&lt;br /&gt;
&lt;br /&gt;
So if configure files from Fedora contains system-auth, we use the seperated common configure files instead.&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7636</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7636"/>
		<updated>2012-10-18T09:23:02Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* THR */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===Current Milestone (1.3 M5 RC4 20121010 build)===&lt;br /&gt;
&#039;&#039;&#039;Yocto 1.3 M5 RC4 20121010 build&#039;&#039;&#039; with POSIX test suite version &#039;&#039;&#039;20120903&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
====AIO====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====SIG====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====SEM====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====THR====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2  || &#039;&#039;&#039;Limitted to memory&#039;&#039;&#039; || routerstation mpc8315e blacksand || conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNTESTED || &lt;br /&gt;
The case create 1000 process, and check the system memory. If system available memory size less than it requires, the case exit with UNTESTED.&lt;br /&gt;
&lt;br /&gt;
When run single case on routherstation, it passed. But fails on mpc8315e to run single case even just after reboot.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || Fixed || routerstation || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====TMR====&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====MSG====&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====TPS====&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====MEM====&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7635</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7635"/>
		<updated>2012-10-18T08:36:40Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Result */ - results of 1.3M5 rc4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf&lt;br /&gt;
&lt;br /&gt;
 $ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
 $ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-10-18. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-10-18. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-10-18&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.4-2 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.4-2 ||  Failures: 4 ||Failures: 4 ||  Failures: 4&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.12-2 || Failures: 29 ||  Failures: 29|| Failures: 589&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.2-3 || Success || Success || Failure: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Failures: 150&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.7-1 ||Failures: 9 || Failures: 9 ||  Failures: 191&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.2-2 ||Failures: 16 || Failures: 33  || Failures: 137&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-18 || Success || Success || There are problems&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.3-7 || Failures: 9 || Failures: 9 || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.6-2 || Success ||  Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.2-1 || Success || Success  || Failures: 6 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.5-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.1-3 || Success || Success  || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.2-1 ||Failures: 6 || Failures: 6  || Failures: 173&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success || Failures: 2 || Failures: 3&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-4 || Failure: 1 || Failure: 1 || Failures: 10&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v  2.2.14-5 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-4 || Success ||  Success || Failures: 1&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-7 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-12 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7327</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7327"/>
		<updated>2012-09-13T07:03:40Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: perl tests have been fixed except Config.t&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2849&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/1.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/2.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
 &lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3,15|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231 They are removed as bugzillia says ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xml2-Azov Tests || || /XML_SAX2_Parser-t2c/tests/XML_SAX2_Parser/XML_SAX2_Parser || 32,37 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3110&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../lib/Config.t || 435 || x86,x86-64,ppc || &#039;&#039;&#039;Y&#039;&#039; ||  || https://bugzilla.yoctoproject.org/show_bug.cgi?id=3099&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || x86,x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7305</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7305"/>
		<updated>2012-09-07T08:06:17Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Version */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===Version===&lt;br /&gt;
Current result is for &#039;&#039;&#039;Yocto 1.3M3 RC2 20120814 build&#039;&#039;&#039; with POSIX test suite version &#039;&#039;&#039;20120614&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7304</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7304"/>
		<updated>2012-09-07T08:04:18Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Results and analysis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===Version===&lt;br /&gt;
Current version is Yocto 1.3M3 RC2 20120814 build with POSIX test suite 20120614.&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7303</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7303"/>
		<updated>2012-09-07T08:00:22Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.3 RC2 20120814 build */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7302</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7302"/>
		<updated>2012-09-07T08:00:01Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.3 RC2 20120814 build */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7301</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7301"/>
		<updated>2012-09-07T07:59:35Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.3 RC2 20120814 build */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7300</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7300"/>
		<updated>2012-09-07T07:59:21Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.3 RC2 20120814 build */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7299</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7299"/>
		<updated>2012-09-07T07:58:44Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* MEM */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7298</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7298"/>
		<updated>2012-09-07T07:57:58Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* TPS */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7297</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7297"/>
		<updated>2012-09-07T07:56:53Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* MSG */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7296</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7296"/>
		<updated>2012-09-07T07:54:09Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* TMR */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7295</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7295"/>
		<updated>2012-09-07T07:53:08Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* THR */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7294</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7294"/>
		<updated>2012-09-07T07:52:02Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* SEM */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Unsupported&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7293</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7293"/>
		<updated>2012-09-07T07:49:46Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* SIG */ - Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7292</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7292"/>
		<updated>2012-09-07T07:49:01Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* AIO */ -- Remove old results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigtimedwait/1-1 || NEW --&amp;gt; PASS || mpc8315e ||  conformance/interfaces/sigtimedwait/1-1: execution: FAILED || &lt;br /&gt;
NO appear in my test&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; PASS for ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaltstack/9-1  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sigaltstack/9-1: execution: UNRESOLVED || POSIX issue. Check with next POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigset/7-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/7-1: execution: UNRESOLVED  ||  POSIX issue. Check with next POSIX version.  || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigset/6-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/6-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigqueue/9-1  || POSIX || blacksand ||  conformance/interfaces/sigqueue/9-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1             || POSIX/Merged || qemu-mips routerstation ||  &amp;quot;test not present&amp;quot; || NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h. Patch to fix this is merged || n/a &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7291</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7291"/>
		<updated>2012-09-07T07:47:14Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.2 M3 RC1 AIO */ -- Remove&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build ==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || &#039;&#039;&#039;NEED RETEST&#039;&#039;&#039;  || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED   || &lt;br /&gt;
Should be fixed by ltp commit 95e17fbe55f6f6b7d647a07e4a1939875d7af2ad. Pls retest it with ltp 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || NEW  || blacksand || conformance/interfaces/aio_suspend/9-1: execution: FAILED  || &lt;br /&gt;
&#039;&#039;&#039;lack of hardware&#039;&#039;&#039;&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2842 Yocto 2842]&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || Fixed  || routerstation || conformance/interfaces/aio_suspend/3-1: execution: SIGNALED  || &lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2841 Yocto 2841]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || Fixed || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || The case has been fix by commit 95e17fb on April 11, 2012, test it with later version ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || NEW || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW  || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on blacksand and sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay blanksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/8-1 || NEW || mpc8315e || conformance/interfaces/aio_fsync/8-1: execution: SIGNALED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on blacksand with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW --&amp;gt; Send Patch || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || It not only show on sugarbay, on blacksand it should fail too. Patch send.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/7-1 || NEW --&amp;gt; Ignore || mpc8315e || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED  ||  No reappearance ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigtimedwait/1-1 || NEW --&amp;gt; PASS || mpc8315e ||  conformance/interfaces/sigtimedwait/1-1: execution: FAILED || &lt;br /&gt;
NO appear in my test&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; PASS for ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaltstack/9-1  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sigaltstack/9-1: execution: UNRESOLVED || POSIX issue. Check with next POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigset/7-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/7-1: execution: UNRESOLVED  ||  POSIX issue. Check with next POSIX version.  || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigset/6-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/6-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigqueue/9-1  || POSIX || blacksand ||  conformance/interfaces/sigqueue/9-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1             || POSIX/Merged || qemu-mips routerstation ||  &amp;quot;test not present&amp;quot; || NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h. Patch to fix this is merged || n/a &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7290</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7290"/>
		<updated>2012-09-07T07:21:20Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* 1.2 M2 RC1 */ - Remove&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build ==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || &#039;&#039;&#039;NEED RETEST&#039;&#039;&#039;  || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED   || &lt;br /&gt;
Should be fixed by ltp commit 95e17fbe55f6f6b7d647a07e4a1939875d7af2ad. Pls retest it with ltp 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || NEW  || blacksand || conformance/interfaces/aio_suspend/9-1: execution: FAILED  || &lt;br /&gt;
&#039;&#039;&#039;lack of hardware&#039;&#039;&#039;&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2842 Yocto 2842]&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || Fixed  || routerstation || conformance/interfaces/aio_suspend/3-1: execution: SIGNALED  || &lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2841 Yocto 2841]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || Fixed || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || The case has been fix by commit 95e17fb on April 11, 2012, test it with later version ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || NEW || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW  || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on blacksand and sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay blanksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/8-1 || NEW || mpc8315e || conformance/interfaces/aio_fsync/8-1: execution: SIGNALED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on blacksand with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW --&amp;gt; Send Patch || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || It not only show on sugarbay, on blacksand it should fail too. Patch send.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/7-1 || NEW --&amp;gt; Ignore || mpc8315e || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED  ||  No reappearance ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || No test environment, guess that new malloc aiocb doesn&#039;t memset to 0  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged. &lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigtimedwait/1-1 || NEW --&amp;gt; PASS || mpc8315e ||  conformance/interfaces/sigtimedwait/1-1: execution: FAILED || &lt;br /&gt;
NO appear in my test&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; PASS for ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaltstack/9-1  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sigaltstack/9-1: execution: UNRESOLVED || POSIX issue. Check with next POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigset/7-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/7-1: execution: UNRESOLVED  ||  POSIX issue. Check with next POSIX version.  || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigset/6-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/6-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigqueue/9-1  || POSIX || blacksand ||  conformance/interfaces/sigqueue/9-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1             || POSIX/Merged || qemu-mips routerstation ||  &amp;quot;test not present&amp;quot; || NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h. Patch to fix this is merged || n/a &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7289</id>
		<title>POSIX-results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX-results&amp;diff=7289"/>
		<updated>2012-09-07T07:02:18Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to  https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from [https://wiki.yoctoproject.org/wiki/Posix_result POSIX test overall on Yocto]. &lt;br /&gt;
&lt;br /&gt;
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].&lt;br /&gt;
&lt;br /&gt;
The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at &lt;br /&gt;
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].&lt;br /&gt;
&lt;br /&gt;
Test POSIX on following platforms:&lt;br /&gt;
*beagleboard&lt;br /&gt;
*mpc8315rdb&lt;br /&gt;
*routerstation&lt;br /&gt;
*sugarbay&lt;br /&gt;
*blacksand&lt;br /&gt;
*huronriver&lt;br /&gt;
&lt;br /&gt;
There are 1794 test cases in total, only failed items are list here.&lt;br /&gt;
&lt;br /&gt;
=== Result Codes ===&lt;br /&gt;
These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.&lt;br /&gt;
&lt;br /&gt;
The PTS result codes are:&lt;br /&gt;
&lt;br /&gt;
 #define PTS_PASS        0&lt;br /&gt;
 #define PTS_FAIL        1&lt;br /&gt;
 #define PTS_UNRESOLVED  2&lt;br /&gt;
 #define PTS_UNSUPPORTED 4&lt;br /&gt;
 #define PTS_UNTESTED    5&lt;br /&gt;
&lt;br /&gt;
A brief discussion of each of these follows:&lt;br /&gt;
&lt;br /&gt;
 PTP_PASS        Used when the test executes fully with no problems and passes.&lt;br /&gt;
 PTP_FAIL        Used when the test executes fully, but fails.&lt;br /&gt;
 PTP_UNRESOLVED  Used when the test was blocked from fully completing and&lt;br /&gt;
                 the pass/failure results cannot be determined.&lt;br /&gt;
 PTP_UNSUPPORTED Used if the test is for a conditional feature that is&lt;br /&gt;
                 not implemented.&lt;br /&gt;
 PTP_UNTESTED    Used when a feature does not have a test associated&lt;br /&gt;
                 with it because:&lt;br /&gt;
                 - The test is just a stub and doesn&#039;t do anything&lt;br /&gt;
                 - The test is only partially complete and can&#039;t really&lt;br /&gt;
                   finish the test&lt;br /&gt;
                 - The test is complete in some cases, but certain things&lt;br /&gt;
                   can happen that leave the test incomplete.  When these&lt;br /&gt;
                   happen, it&#039;s PTP_UNTESTED.&lt;br /&gt;
&lt;br /&gt;
For every failed case which returns &#039;&#039;&#039;PTP_FAIL&#039;&#039;&#039; there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don&#039;t return PTP_PASS find the root cause.&lt;br /&gt;
&lt;br /&gt;
==Results and analysis==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build ==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || &#039;&#039;&#039;NEED RETEST&#039;&#039;&#039;  || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED   || &lt;br /&gt;
Should be fixed by ltp commit 95e17fbe55f6f6b7d647a07e4a1939875d7af2ad. Pls retest it with ltp 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || NEW  || blacksand || conformance/interfaces/aio_suspend/9-1: execution: FAILED  || &lt;br /&gt;
&#039;&#039;&#039;lack of hardware&#039;&#039;&#039;&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2842 Yocto 2842]&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || Fixed  || routerstation || conformance/interfaces/aio_suspend/3-1: execution: SIGNALED  || &lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2841 Yocto 2841]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || Fixed || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || The case has been fix by commit 95e17fb on April 11, 2012, test it with later version ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || NEW || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW  || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on blacksand and sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay blanksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/8-1 || NEW || mpc8315e || conformance/interfaces/aio_fsync/8-1: execution: SIGNALED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on blacksand with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW --&amp;gt; Send Patch || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || It not only show on sugarbay, on blacksand it should fail too. Patch send.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/7-1 || NEW --&amp;gt; Ignore || mpc8315e || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED  ||  No reappearance ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || No test environment, guess that new malloc aiocb doesn&#039;t memset to 0  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged. &lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 || POSIX  || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is reviewing. ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || POSIX || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same fail reason with aio_read/8-1. If the patch for aio_read/8-1 is merged, then send the similar patch ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
&lt;br /&gt;
but it does not say what should happen if the value it not one of the above.&lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio() &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || PASSED || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; || Test with ltp release 20120104, it passes. ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || POSIX/Fixed || sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; ||Test with ltp release 20120104, it hungs.  ltp commit d89f310e5 on Feb 20, 2012 fix this issue. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_cancel/7-1 || POSIX/FIXED || blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED || FIXED by upstream. git commit on Sep 5, 2011: 7a0726ca51d2ba3a4ba068f6cc1833486f44304c || &lt;br /&gt;
|-&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigtimedwait/1-1 || NEW --&amp;gt; PASS || mpc8315e ||  conformance/interfaces/sigtimedwait/1-1: execution: FAILED || &lt;br /&gt;
NO appear in my test&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; PASS for ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaltstack/9-1  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sigaltstack/9-1: execution: UNRESOLVED || POSIX issue. Check with next POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigset/7-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/7-1: execution: UNRESOLVED  ||  POSIX issue. Check with next POSIX version.  || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigset/6-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/6-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigqueue/9-1  || POSIX || blacksand ||  conformance/interfaces/sigqueue/9-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1             || POSIX/Merged || qemu-mips routerstation ||  &amp;quot;test not present&amp;quot; || NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h. Patch to fix this is merged || n/a &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=POSIX_History_Results&amp;diff=7288</id>
		<title>POSIX History Results</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=POSIX_History_Results&amp;diff=7288"/>
		<updated>2012-09-07T03:27:04Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: Page created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This page records the POSIX history test results for Yocto from version 1.2.&lt;br /&gt;
&lt;br /&gt;
The POSIX test results for Yocto latest version is at https://wiki.yoctoproject.org/wiki/POSIX-results .&lt;br /&gt;
&lt;br /&gt;
The results before Yocto 1.3 M3 RC2 is recorded by classified by POSIX sub-test groups, and later results will be recorded by Yocto versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Results before Yocto 1.3 M3 RC2==&lt;br /&gt;
The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given. &lt;br /&gt;
&lt;br /&gt;
Values of clumn &amp;quot;status&amp;quot; descript the current status of the case. Some keywords include:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bug&#039;&#039;&#039;: it is a bug and the test case needs to be fixed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ignore&#039;&#039;&#039;: the case is not appropriate for the hardware or linux&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSIX&#039;&#039;&#039;: that test case is in development, that causes the test fails&lt;br /&gt;
&lt;br /&gt;
===AIO===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNSUPPORTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build ==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || &#039;&#039;&#039;NEED RETEST&#039;&#039;&#039;  || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED   || &lt;br /&gt;
Should be fixed by ltp commit 95e17fbe55f6f6b7d647a07e4a1939875d7af2ad. Pls retest it with ltp 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || NEW  || blacksand || conformance/interfaces/aio_suspend/9-1: execution: FAILED  || &lt;br /&gt;
&#039;&#039;&#039;lack of hardware&#039;&#039;&#039;&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2842 Yocto 2842]&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || Fixed  || routerstation || conformance/interfaces/aio_suspend/3-1: execution: SIGNALED  || &lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2841 Yocto 2841]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand  mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/4-1 || Fixed || routerstation || conformance/interfaces/aio_cancel/4-1: execution: UNRESOLVED  || ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa || [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2659 Yocto 2659] &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/11-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| &lt;br /&gt;
for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| &lt;br /&gt;
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/3-2 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||&lt;br /&gt;
Same with aio_return/2-1&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/4-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||&lt;br /&gt;
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || &lt;br /&gt;
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.&lt;br /&gt;
||&lt;br /&gt;
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || &#039;&#039;&#039;Not A Bug&#039;&#039;&#039; || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 3f050dc4ac926158d94dd60ab42c727ad1dfe7aa will check the limit of aio queue, if there is no limit, the case is not supported and return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Test case try to overflow the aio queue, but const value 1024 is not enough&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just test _SC_ASYNCHRONOUS_IO value.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Same with aio_read/2-1 &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is not complete, and just return UNTESTED &lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || &lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Test case is a stub&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || Fixed || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || The case has been fix by commit 95e17fb on April 11, 2012, test it with later version ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || NEW || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW  || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;FAILED on blacksand and sugarbay with ltp 20120401 &#039;&#039;&#039; || sugarbay blanksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 ||  || sugarbay  || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 ||  || sugarbay || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/8-1 || NEW || mpc8315e || conformance/interfaces/aio_fsync/8-1: execution: SIGNALED  ||   ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on blacksand with ltp 20120401 &#039;&#039;&#039; || sugarbay || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW --&amp;gt; Send Patch || sugarbay || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || It not only show on sugarbay, on blacksand it should fail too. Patch send.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/7-1 || NEW --&amp;gt; Ignore || mpc8315e || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED  ||  No reappearance ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged on Mar 21, 2012. Please test it with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| aio_cancel/3-1 || NEW || blacksand || conformance/interfaces/aio_cancel/3-1: execution: UNRESOLVED  || No test environment, guess that new malloc aiocb doesn&#039;t memset to 0  ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/8-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is merged. &lt;br /&gt;
&lt;br /&gt;
Why PASS on mpc8315e:&lt;br /&gt;
 aiocb doesn&#039;t cleanup after declare.&lt;br /&gt;
 So aiocb.aio_reqprio is random and&lt;br /&gt;
 beyond AIO_PRIO_DELTA_MAX, so &lt;br /&gt;
 call aio_read() fails and returns -1  &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || Fixed || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same with aio_read/8-1. ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || &lt;br /&gt;
 conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 lio_listio/11-1.c Error lio_listio() should have returned -1&lt;br /&gt;
|| for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
but it does not say what should happen if the value it not one of the above. &lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/9-1 || &#039;&#039;&#039;PASS on routerstation&#039;&#039;&#039; || routerstation sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
On routerstation run it directly, fails randomly with message:&lt;br /&gt;
 aio_suspend/9-1.c aio_suspend() should set errno&lt;br /&gt;
 to EAGAIN: 4 (Interrupted system call)&lt;br /&gt;
|| ltp commit d89f310e5 on Feb 20, 2012 fix this issue. Test pass on routerstation. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/8-1 || POSIX  || sugarbay routerstation beagleboard || conformance/interfaces/aio_read/8-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Patch sended by Peng Haitao &amp;lt;penght#cn.fujitsu.com&amp;gt; is reviewing. ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/6-1 || POSIX || sugarbay routerstation beagleboard || conformance/interfaces/aio_write/6-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || Same fail reason with aio_read/8-1. If the patch for aio_read/8-1 is merged, then send the similar patch ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/11-1 || eglibc issue || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/11-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;  || for aio_lio_opcode posix says &amp;quot;The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP&amp;quot;&lt;br /&gt;
&lt;br /&gt;
but it does not say what should happen if the value it not one of the above.&lt;br /&gt;
&lt;br /&gt;
eglibc doesn&#039;t validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio() &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/3-1 || PASSED || routerstation || conformance/interfaces/aio_suspend/3-1: execution: &#039;&#039;&#039;SIGNALED&#039;&#039;&#039; || Test with ltp release 20120104, it passes. ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/9-1 || POSIX/Fixed || sugarbay blacksand || conformance/interfaces/aio_suspend/9-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039; ||Test with ltp release 20120104, it hungs.  ltp commit d89f310e5 on Feb 20, 2012 fix this issue. ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  || The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_return/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED &lt;br /&gt;
 aio_return/2-1.c Second call to aio_return() &#039;&#039;&#039;may&#039;&#039;&#039; return -1; &lt;br /&gt;
 aio_return() returned 111&lt;br /&gt;
|| In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. &lt;br /&gt;
&lt;br /&gt;
In eglibc the return value is same as first return. &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/3-2 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_return/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  || Same with aio_return/2-1||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_suspend/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_cancel/7-1 || POSIX/FIXED || blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_cancel/7-1: execution: UNRESOLVED || FIXED by upstream. git commit on Sep 5, 2011: 7a0726ca51d2ba3a4ba068f6cc1833486f44304c || &lt;br /&gt;
|-&lt;br /&gt;
|| aio_error/3-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED || test aio_error with invalid aiocb, but the case is not fully complete ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/1-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_fsync/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_fsync/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/13-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/14-1 ||POSIX  || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/15-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || N/A&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/2-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  || Test case is outdated, compare &lt;br /&gt;
  sysconf(_SC_ASYNCHRONOUS_IO) != 200112L&lt;br /&gt;
if true return UNSUPPORTED. The const value should be 200809L now.&lt;br /&gt;
 ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_read/6-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  || Same with aio_read/2-1 ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_read/9-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but not quit sure the critical value on different OS.||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| aio_write/10-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/11-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/12-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/13-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  || Test case is a stub ||&lt;br /&gt;
|-&lt;br /&gt;
|| aio_write/4-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| aio_write/7-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  || Test case try to overflow the aio queue, but const value 1024 is not enough||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| lio_listio/16-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/17-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/19-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/20-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/21-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/22-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/23-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED ||&lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/24-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  || Test case is not complete, and just return UNTESTED || &lt;br /&gt;
|-&lt;br /&gt;
|| lio_listio/25-1 || POSIX || sugarbay blacksand mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  || Test case is a stub||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SIG===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| n/a ||  ||  ||   || &lt;br /&gt;
&lt;br /&gt;
|| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; Still Failed in ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || &lt;br /&gt;
Please test with ltp version 20120401.&lt;br /&gt;
&lt;br /&gt;
Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409 which merge on Feb 2, 2012.&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigtimedwait/1-1 || NEW --&amp;gt; PASS || mpc8315e ||  conformance/interfaces/sigtimedwait/1-1: execution: FAILED || &lt;br /&gt;
NO appear in my test&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged --&amp;gt; PASS for ltp Version 20120104 || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1 || POSIX/Merged || routerstation ||  &amp;quot;test not present&amp;quot; || Send patch to fix this issue. git commit: f33434dcdf6c4ae30a76b8cf9fdd5e242adaa409&lt;br /&gt;
&lt;br /&gt;
NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h  &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sigaltstack/9-1  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sigaltstack/9-1: execution: UNRESOLVED || POSIX issue. Check with next POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sigset/7-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/7-1: execution: UNRESOLVED  ||  POSIX issue. Check with next POSIX version.  || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigset/6-1  || POSIX || sugarbay blacksand ||  conformance/interfaces/sigset/6-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigqueue/9-1  || POSIX || blacksand ||  conformance/interfaces/sigqueue/9-1: execution: UNRESOLVED  || POSIX issue. Check with next POSIX version.   || n/a &lt;br /&gt;
|-&lt;br /&gt;
|| sigaction/16-1             || POSIX/Merged || qemu-mips routerstation ||  &amp;quot;test not present&amp;quot; || NO SIGSTKFLT on mips platform. Signals are defined in /usr/include/bits/signum.h. Patch to fix this is merged || n/a &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  &#039;&#039;&#039;Not A Bug&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||&lt;br /&gt;
  [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1&lt;br /&gt;
  [17:07:31]File ../../../conformance/interfaces&lt;br /&gt;
  /sem_init/7-1.c cannot test: There is no &lt;br /&gt;
  constraint on SEM_NSEMS_MAX&lt;br /&gt;
&lt;br /&gt;
Then return &#039;&#039;&#039;UNTESTED&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
It return UNTESTED([[Result Codes]]), we don&#039;t need care it.&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  Not Bug  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || For the case, it return UNTESTED. Because there is no limit on SEM_NSEM_MAX.&lt;br /&gt;
&lt;br /&gt;
In the POSIX spec about sysconf() &#039;&#039;&#039;Return Value&#039;&#039;&#039;:&lt;br /&gt;
  If the variable corresponding to name is described&lt;br /&gt;
  in &amp;lt;limits.h&amp;gt; as a maximum or minimum value and&lt;br /&gt;
  &#039;&#039;&#039;the variable has no limit&#039;&#039;&#039;, sysconf( ) shall return −1&lt;br /&gt;
  without changing the value of errno. &lt;br /&gt;
&lt;br /&gt;
the case check the return value of sysconf and can&#039;t get the value of SEM_NSEM_MAX then return UNTESTED.&lt;br /&gt;
This obeys POSIX spec and is &#039;&#039;&#039;NOT A BUG&#039;&#039;&#039;&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. &lt;br /&gt;
&lt;br /&gt;
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || beagleboard routerstation mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case fails.&lt;br /&gt;
&lt;br /&gt;
Some one from windriver has send a patch but not merged yet.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sem_post/8-1 || POSIX  || blacksand ||  conformance/interfaces/sem_post/8-1: execution: FAILED || POSIX issue. Check next milestone with next POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sem_init/7-1   ||  POSIX  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || can&#039;t test: There is no constraint on SEM_NSEMS_MAX || In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1. No SEM_NSEMS_MAX defined in Yocto Ubuntu and Fedora, so the case returns UNTESTED. || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===THR===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || huronriver || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:&lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
|| &lt;br /&gt;
multi-threads issue.&lt;br /&gt;
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862] &lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || Pls. retest it ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with 20120614&#039;&#039;&#039; || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || Pls. Retest it ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || &#039;&#039;&#039;Conformed&#039;&#039;&#039; || routerstationpro with LTP 20120614 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG &lt;br /&gt;
  [17:50:59]System abilities:               &lt;br /&gt;
  [17:50:59] TSA: 200809&lt;br /&gt;
  [17:50:59] TSS: 200809&lt;br /&gt;
  [17:50:59] TPS: 200809&lt;br /&gt;
  [17:50:59] pagesize: 4096&lt;br /&gt;
  [17:50:59] min stack size: 131072&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]WARNING: The TPS option is claimed to be supported but setscope fails&lt;br /&gt;
  [17:50:59]All 33 thread attribute objects were initialized&lt;br /&gt;
  &lt;br /&gt;
  Segmentation fault&lt;br /&gt;
&lt;br /&gt;
|| Multi-threads issue &lt;br /&gt;
||https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039;  || beagleboard routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &lt;br /&gt;
ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || &#039;&#039;&#039;Retest with new version&#039;&#039;&#039; || routerstationpro mpc8315e sugarbay  ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || ltp commit 62e3be1facfdb51ef4b9cb1f107fca7ffed06e03 fixes this issue, please test it with ltp version 20120614 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand  || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || routerstationpro ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED &lt;br /&gt;
  [Thread 0x0x2c56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2c56d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] is waiting for the cond&lt;br /&gt;
  [Thread 0x0x2b56d4b0] started and locked the mutex&lt;br /&gt;
  [Thread 0x0x2b56d4b0] is waiting for the cond&lt;br /&gt;
  [Main thread] signals a condition&lt;br /&gt;
  [Thread 0x0x2c56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2c56d4b0] released the mutex&lt;br /&gt;
  [Main thread] 1 waiters were wakened&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Thread 0x0x2bd6d4b0] released the mutex&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Main thread] signals to wake up the next thread&lt;br /&gt;
  [Thread 0x0x2b56d4b0] was wakened and acquired the mutex again&lt;br /&gt;
  [Main thread] had to signal the condition 7 times&lt;br /&gt;
  [Main thread] to wake up 3 threads&lt;br /&gt;
  . Test FAILED.&lt;br /&gt;
&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2674 2674] ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1  || NEW || routerstationpro ||conformance/interfaces/pthread_create/14-1: execution: SIGNALED  || Fails randomly.  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e sugarbay blacksand huronriver with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  || &#039;&#039;&#039;NO fails&#039;&#039;&#039; when run test case for 100 times on routerstation ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard huronriver   || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_signal/1-1  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_cond_signal/1-1: execution: FAILED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  ||  || routerstationpro with LTP 20120401 ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  ||  || beagleboard routerstationpro mpc8315e blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_detach/4-3  || NEW || blacksand ||conformance/interfaces/pthread_detach/4-3: execution: HUNG  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || beagleboard mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || mpc8315e with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/1-2  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/1-2: execution: UNRESOLVED  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_join/6-3  || NEW || blacksand with LTP 20120401 ||conformance/interfaces/pthread_join/6-3: execution: UNRESOLVED  ||  ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a rwlock-&amp;gt;__data.&#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or write lock, and the default is &#039;read lock&#039; first. So second reader can get the lock when a higher priority writer is waiting for the lock.&lt;br /&gt;
&lt;br /&gt;
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. &lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  || Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || beagleboard    || &lt;br /&gt;
 HUNG - &amp;quot;timeout&amp;quot;                                    &lt;br /&gt;
|| Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test)&lt;br /&gt;
 score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) &lt;br /&gt;
 total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || beagleboard routerstation mpc8315e sugarbay || &lt;br /&gt;
 execution: HUNG &lt;br /&gt;
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || beagleboard  routerstation blacksand sugarbay|| Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Merged  || beagleboard routerstation mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || beagleboard routerstation mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || beagleboard routerstation mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/2-2 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/2-2: execution: FAILED  || POSIX issue. Check next milestone with new POSIX version.   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_init/1-3 || POSIX  || sugarbay    || conformance/interfaces/pthread_cond_init/1-3: execution: HUNG  || POSIX issue. Check next milestone with new POSIX version.  || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_getprioceiling/1-1 ||  POSIX   || sugarbay blacksand || conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_init/5-3       ||   POSIX  || sugarbay || conformance/interfaces/pthread_mutex_init/5-3: execution: SIGNALED || POSIX issue. Check next milestone with new POSIX version.|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cancel/5-2       ||     POSIX  || blacksand || conformance/interfaces/pthread_cancel/5-2: execution: UNRESOLVED || POSIX issue. Check next milestone with new POSIX version. || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_cond_broadcast/1-2 || Ignore       || qemu-arm beagleboard    || HUNG - &amp;quot;timeout&amp;quot; || Hardware limited. &lt;br /&gt;
&lt;br /&gt;
Create too many threads and cause kernel to kill some of them, so the case block on getting mutex. &lt;br /&gt;
&lt;br /&gt;
Log in dmesg:&lt;br /&gt;
&lt;br /&gt;
 Out of memory: Kill process 25300 (1-2.run-test) score 8 or sacrifice child&lt;br /&gt;
 Killed process 858 (1-2.run-test) total-vm:26200kB, anon-rss:8236kB, file-rss:4kB&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/1-6         || POSIX     || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay || || testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/10-1        || POSIX/Removed   || qemu-arm beagleboard qemu-mips routerstation || Segmentation fault || test case use an uninitialized attributes object to make case pthread_create() segmentation fault then catch the signal. But the uninitialized object is NOT invalid to pthread_create() all the time || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_create/14-1        ||  POSIX    || routerstation || Segmentation fault || test failed 6/10 times. Test with new version POSIX suite || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_mutex_lock/3-1     || POSIX/Patch Merged  || qemu-arm beagleboard routerstation qemu-mips mpc8315e || User defined signal 2 || Signals are sended before install signal handler|| n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-1  || Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. child thread2 read lock &#039;rwlock&#039; with low priority should block because a high priority write lock is waiting, but read lock doesn&#039;t block.  || This test case is to test option &#039;&#039;&#039;Thread Execution Scheduling&#039;&#039;&#039; of pthread rwlock. But eglibc/libc don&#039;t support this option. They provide a &#039;&#039;&#039;__flags&#039;&#039;&#039; option to identify perfer &#039;read lock&#039; or read lock, and the default is &#039;read lock&#039; first. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported. ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_rdlock/2-2  ||    Ignore(unsupport)  || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||Main thread read lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with low priority will block. child thread2 read lock &#039;rwlock&#039; with same low priority should block because a same priority write lock is waiting, but read lock doesn&#039;t block.  || See pthread_rwlock_rdlock/2-1 ||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| pthread_rwlock_unlock/3-1  ||  Ignore(unsupport)    || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Main thread write lock &#039;rwlock&#039; with high priority. Child thread1 write lock &#039;wrlock&#039; with medium priority will block. Child thread2 read lock &#039;wrlock&#039; with same mediumpriority. Child thread3 write lock &#039;wrlock&#039; with low priority. When main thread unlock &#039;rwlock&#039;, child thread1 get the &#039;wrlock&#039;. When child thread1 unlock &#039;rwlock&#039;, child thread2 should get the read lock &#039;wrlock&#039; because it has higher priority than child thread3. But it is the child thread3 who get the &#039;wrlock&#039;.  || See pthread_rwlock_rdlock/2-1 || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== TMR ===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;confirmed&#039;&#039;&#039; || sugarbay huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || &#039;&#039;&#039;Confirmed&#039;&#039;&#039; || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2899 &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand  || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand  || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || huronriver || conformance/interfaces/timer_settime/5-3: execution: HUNG || We don&#039;t get huronriver board ||  &lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || &#039;&#039;&#039;Stub Case&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| clock_getcpuclockid/5-1    || &#039;&#039;&#039;Implement related&#039;&#039;&#039;  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
conformance/interfaces/clock_getcpuclockid/5-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  clock_getcpuclockid(1, ..) passed unexpectedly &lt;br /&gt;
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not supported&#039;&#039;&#039; by Linux. In man page, it addresses EPERM &amp;quot;Specified as an &#039;&#039;&#039;optional error&#039;&#039;&#039; in POSIX.1-2001; &#039;&#039;&#039;does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3       || NEW || sugarbay || || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || n/a &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 ||  || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-3 || NEW || sugarbay || conformance/interfaces/timer_settime/5-3: execution: HUNG ||  || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_settime/5-2 || NEW --&amp;gt; Ignore || beagleboard routerstation || conformance/interfaces/timer_settime/5-2: execution: FAILED &lt;br /&gt;
 signal was not sent&lt;br /&gt;
|| Time on these 2 board have not been set, and output of &#039;date&#039; is someday of year 1970. Set the time and this case PASSES. || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || beagleboard routerstation mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| clock_getcpuclockid/6-1 || Ignore || sugarbay blacksand ||conformance/interfaces/clock_getcpuclockid/6-1: execution: UNRESOLVED || PASS on 1.2 M2 RC1  ||&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/3-1       || &#039;&#039;&#039;POSIX&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return UNTESTED || N/A &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| timer_getoverrun/2-3       ||   Ignore   || qemu-arm beagleboard routerstation || || &lt;br /&gt;
&#039;&#039;&#039;PASS on 1.2 M2 RC1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;WR: Change CONFIG_HZ from 100 to 250 can solve this.&amp;quot;  The root cause is that these platform don&#039;t provide &#039;&#039;&#039;HIGH RESOLUTION TIMER&#039;&#039;&#039;. The value on platforms which test case can pass is only 1 nanosecond. But on qemuarm is 10000000 nanoseconds, on routerstation is 4000250 nanoseconds. After set &lt;br /&gt;
  CONFIG_HIGH_RES_TIMER=y&lt;br /&gt;
for &#039;&#039;&#039;routerstation&#039;&#039;&#039; (CONFIG_HZ=250 is already set), test case passes. &lt;br /&gt;
&lt;br /&gt;
These 2 kernel configurations for qemuarm are not permitted.  &lt;br /&gt;
&lt;br /&gt;
|| [http://bugzilla.pokylinux.org/show_bug.cgi?id=1827 Bug 1827]&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| clock_getcpuclockid/5-1    || Ignore   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || clock_getcpuclockid(1, ..) passed unexpectedly || Permission issue. When call clock_getcpuclockid() as a unpriviledge user to get process &#039;init&#039; cpu time, it succeeds but expect fails with EPERM.&lt;br /&gt;
&lt;br /&gt;
This is not supported by Linux. In man page, it addresses EPERM &amp;quot;&#039;&#039;&#039;Speci‐fied as an optional error in POSIX.1-2001; does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.&#039;&#039;&#039;&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
clock_getcpuclockid() is implemented in eglibc source file libc/sysdeps/unix/sysv/linux/clock_getcpuclockid.c, call system call clock_getres() without permission check &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MSG===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/20-1          || &#039;&#039;&#039;Not a bug&#039;&#039;&#039;         || beagleboard  || conformance/interfaces/mq_timedsend/20-1: execution: FAILED&lt;br /&gt;
|| Test case passes for single test. It is hardware and time related issue. When the OS in high load, case may fail.&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_open/16-1     || Fixed || routerstation|| conformance/interfaces/mq_open/16-1: execution: FAILED || Test cause issue&lt;br /&gt;
|| https://bugzilla.yoctoproject.org/show_bug.cgi?id=2886&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/10-2       || &#039;&#039;&#039;Lack of Hardware&#039;&#039;&#039; || blacksand || conformance/interfaces/mq_timedreceive/10-2: execution: FAILED &lt;br /&gt;
&lt;br /&gt;
||Lack of Hardware&lt;br /&gt;
&lt;br /&gt;
For comparison, routerstation with kernel-&#039;&#039;&#039;3.0.24&#039;&#039;&#039;+git1&lt;br /&gt;
+34e0d2b4b4e9778b31f9ea99ca43f0dc71a7ee23_1&lt;br /&gt;
+982522e3901fad56bb908565b22c498025ab536c-r4.routerstationpro PASS.&lt;br /&gt;
|| [https://bugzilla.yoctoproject.org/show_bug.cgi?id=2863 Yocto 2863]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Fixed&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand huronriver || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| ltp commit 40b04af96e3db7fd8c182159da511d851a9a01a1 on &#039;&#039;&#039;Apr 11, 2012&#039;&#039;&#039; has fixed this issue.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &lt;br /&gt;
&#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|- &lt;br /&gt;
&lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED  || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || &#039;&#039;&#039;Stub Case&#039;&#039;&#039;&lt;br /&gt;
Just print something and then return UNTESTED &lt;br /&gt;
|| n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || blacksand sugarbay ||  &lt;br /&gt;
  conformance/interfaces/mq_timedreceive/10-2: execution: FAILED&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/16-1              || NEW || routerstation || conformance/interfaces/mq_open/16-1: execution: FAILED ||  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; || mpc8315e routerstation sugarbay blacksand || &lt;br /&gt;
  FAIL: mq_timedreceive didn&#039;t block until timout expires&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| Time resolution related. If not set CONFIG_HIGH_RES_TIMERS, the case will PASS. But this conflicts with timer_getoverrun/2-3 which needs to set CONFIG_HIGH_RES_TIMERS to make case PASS.  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || kernel implement issue || beagleboard routerstation mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED ||Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand ||UNTESTED  || Just print something and then return UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || UNTESTED || Just print something and then return UNTESTED || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedreceive/5-2       || &#039;&#039;&#039;Ignore&#039;&#039;&#039; ||  qemu-ppc qemu-mips mpc8315e subarbay blacksand || || The time() can not specifies an abs_timeout to mq_timedreceiver () for preempt_rt kernel || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedreceive/10-2       || &#039;&#039;&#039;Bug&#039;&#039;&#039; || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e subarbay blacksand ||  &lt;br /&gt;
  FAIL: the validity of&lt;br /&gt;
  abs_timeout is checked&lt;br /&gt;
  Test FAILED&lt;br /&gt;
&lt;br /&gt;
 || Pass a invalid parameter and when no need to wait mq_timedreceive should not check the timeout value. This is described in IEEE Std 1003.1-2008 POSIX Base Specifications, Issue 7, line 43787-43889.&lt;br /&gt;
&lt;br /&gt;
In linux implementation, mq_timedreceive is defined in ipc/mqueue.c. It will call prepare_timeout() ==&amp;gt; timespec_valid() to validate the parameter abs_timeout before to get the message queue info.&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_timedsend/5-1          ||    POSIX/Patch send           || qemu-ppc qemu-mips || &lt;br /&gt;
  Child never interrupted&lt;br /&gt;
  mq_send() didn&#039;t appear&lt;br /&gt;
  to complete&lt;br /&gt;
  Test FAILED&lt;br /&gt;
|| It fails random, because test case expect parent process sleep first and then child send signal to notify the parent, then the test pass. But the parent doesn&#039;t have chance to sleep before the child send the signal. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_close/5-1               || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|| mq_open/4-1                || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/10-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/14-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/17-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/22-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/24-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/25-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/28-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || ||Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_open/30-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mq_send/6-1              || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/6-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_timedsend/17-1          || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||mq_unlink/2-3              || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===TPS===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. &lt;br /&gt;
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. &lt;br /&gt;
For default security operations, security_task_getscheduler() is a stub function and just return 0.&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand  || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand  ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand  || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand  || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand  || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Not Supported&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: &#039;&#039;&#039;UNRESOLVED&#039;&#039;&#039;&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| &lt;br /&gt;
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. In the manual of sched_getparam about return value:&lt;br /&gt;
   EPERM  The calling process does not have appropriate&lt;br /&gt;
          privileges (Linux: does not have the &lt;br /&gt;
          CAP_SYS_NICE capability).&lt;br /&gt;
&lt;br /&gt;
It is obvious that Linux does NOT support this case.&lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Not Supportted&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: &#039;&#039;&#039;FAILED&#039;&#039;&#039;&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Similiar with sched_getparam/6-1&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  || NEW || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
||sched_getparam/6-1         || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| sched_getparam is a system call, and defined in kernel/sched/core.c:L4266. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || beagleboard routerstation mpc8315e sugarbay blacksand ||&lt;br /&gt;
 Testing with user deamon (uid: 1)&lt;br /&gt;
 The function sched_getscheduler has successed.&lt;br /&gt;
&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || routerstation mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || beagleboard  routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || beagleboard routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || beagleboard routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || beagleboard routerstation mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || beagleboard  routerstation  mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2====&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/9-1  ||  || blacksand ||  conformance/interfaces/sched_setparam/9-1: execution: FAILED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setscheduler/17-5  || POSIX  || sugarbay blacksand ||  conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED  || Test next milestion with new version POSIX suite.  || n/a &lt;br /&gt;
|- &lt;br /&gt;
||sched_getparam/6-1   || &#039;&#039;&#039;Ignore&#039;&#039;&#039;      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||&lt;br /&gt;
  Testing with user deamon (euid, uid) = (1, 1)&lt;br /&gt;
  The function sched_getparam has successed.&lt;br /&gt;
|| Call sched_getparam() to get process init as non-root user succeed unexpectedly.&lt;br /&gt;
sched_getparam is a system call, and defined in kernel/sched.c:L5510. It calls security_task_getscheduler() ==&amp;gt; security_ops-&amp;gt;task_getscheduler() to perform security check. Default security policy is &amp;quot;Unix Discretionary Access Control&amp;quot;. Its task_getscheduler() refer to cap_task_getscheduler() and doesn&#039;t perform any permission check.&lt;br /&gt;
 WR: A permission test. On Linux, the kernel makes no check on&lt;br /&gt;
 user permission to call this API. So basically we don&#039;t know&lt;br /&gt;
 on what condition a system should return EPERM.&lt;br /&gt;
 It is implementation defined. &lt;br /&gt;
||&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/7-1     || &#039;&#039;&#039;Ignore&#039;&#039;&#039;   || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
  Testing with user deamon (uid: 1)&lt;br /&gt;
  The function sched_getscheduler has successed.&lt;br /&gt;
|| Same with sched_getparam/6-1&lt;br /&gt;
  WR: A permission test. On Linux, the kernel&lt;br /&gt;
  makes no check on user permission to call&lt;br /&gt;
  this API. So basically we don&#039;t know on what&lt;br /&gt;
  condition a system should return EPERM. &lt;br /&gt;
  It is implementation defined. &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_yield/1-1          || Bug / Fixed || qemu-arm qemu-mips routerstation qemu-ppc mpc8315e beagleboard || || SIGINT is trapped by bin/run-test.sh || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_max/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_get_priority_min/1-3 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_getscheduler/2-1     || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/3-1         || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/8-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/12-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/13-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/14-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/15-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/16-1 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/17-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/18-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/19-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/20-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-1        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/21-2        || Ignore       || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-2 || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| sched_setparam/23-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-4        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/23-5       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-2       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-3       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setparam/25-4       || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/2-1           || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/5-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/6-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/7-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/9-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/10-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/11-1        || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/12-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/13-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/14-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/15-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/17-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-2      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-3      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/19-4      || Ignore      || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-1        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
||sched_setscheduler/22-2        || POSIX           || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || || Just print something and then return || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===MEM===&lt;br /&gt;
&lt;br /&gt;
====1.3 RC2 20120814 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120802 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M2 RC1 20120712 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2.1 20120629 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6 || Fixed || routerstation || conformance/interfaces/mlockall/3-6: execution: FAILED ||   &lt;br /&gt;
I have push fix to yocto/standard/routerstationpro with commit 220d89fcf345ee28fb0cdcf0f33f83b3dc7c460f, but 1.2.1 doesn&#039;t include it. I don&#039;t know the reason.&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mlockall/3-7 || Fixed || routerstation || conformance/interfaces/mlockall/3-7: execution: FAILED ||  &lt;br /&gt;
Same with mlockall/3-6&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 M1 RC1 20120613 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  pa: 0x400fb000 &lt;br /&gt;
  pa_2: 0x40115000 &lt;br /&gt;
  Modification of the partial page&lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| This case maps a file with length of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. &lt;br /&gt;
&lt;br /&gt;
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached. This case is not supported by Linux.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Modification of the partial page &lt;br /&gt;
  at the end of an object is written out&lt;br /&gt;
|| Same with mmap/11-4, and this case test share memory instead of regular file.&lt;br /&gt;
&lt;br /&gt;
shmfs&#039;s file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. &lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  || This case try to test implement which doesn&#039;t support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || &#039;&#039;&#039;Not Supported&#039;&#039;&#039; || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || &lt;br /&gt;
  Test Fail: mmap/28-1.c Got no error at mmap()&lt;br /&gt;
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed. &lt;br /&gt;
&lt;br /&gt;
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn&#039;t fail in mmap().&lt;br /&gt;
&lt;br /&gt;
This case is NOT supported by Linux.&lt;br /&gt;
|| n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.3 20120606 build==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC5 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed  || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 RC4 Denzil==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC3==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC2==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012 &lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M4 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104&lt;br /&gt;
&lt;br /&gt;
It caused by patch for Yocto 1429, and send patch to fix it. Merged to Yocto routerstation branch.&lt;br /&gt;
&lt;br /&gt;
commit 59c28f7ef99fcea4c7979dde0df650b167da36b9 on Apr 25, 2012&lt;br /&gt;
&lt;br /&gt;
 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || Fixed || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-1, failed by using USB sotrage. POSIX version: 20120104 &lt;br /&gt;
&lt;br /&gt;
Same with 3-6&lt;br /&gt;
|| n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX/Not A Bug || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
 Test Untested: MAP_FIXED defined &lt;br /&gt;
|| The case requires that macros MAP_FIXED, MAP_SHARED, PROT_WRITE, PROT_READ are not defined. eglibc has defined them, so the test cases quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M3 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-6                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-6: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7                 || NEW --&amp;gt; Ignore || routerstation  || conformance/interfaces/mlockall/3-7: execution: FAILED || Test on board router_staion-2 about 30 times, no fails. POSIX version: 20120104 || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M2 RC1==== &lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====1.2 M1 RC2==== &lt;br /&gt;
Note： from LTP/POSIX maintainer Cyril say: &amp;quot;At least the mmap/31-1, mmap/28-1, mmap/27-1, mmap/24-2, mmap/11-4 and&lt;br /&gt;
mmap/11-5 are known to fail sometimes and most likely are coded&lt;br /&gt;
incorrecly.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
http://sourceforge.net/mailarchive/forum.php?thread_name=4EFBC16E.9040102%40windriver.com&amp;amp;forum_name=ltp-list&lt;br /&gt;
&lt;br /&gt;
So these cases should exclude from test list.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; &lt;br /&gt;
|| &#039;&#039;&#039;POSIX cases&#039;&#039;&#039;|| &#039;&#039;&#039;status&#039;&#039;&#039; || &#039;&#039;&#039;platforms&#039;&#039;&#039; || &#039;&#039;&#039;error msg&#039;&#039;&#039; || &#039;&#039;&#039;analysis&#039;&#039;&#039; ||&#039;&#039;&#039;bugzilla&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|| mlockall/3-7  ||  || sugarbay blacksand ||  conformance/interfaces/mlockall/3-7: execution: UNRESOLVED ||   || n/a&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-4                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || &lt;br /&gt;
pa: 0x400fb000 &lt;br /&gt;
&lt;br /&gt;
pa_2: 0x40115000 &lt;br /&gt;
&lt;br /&gt;
Modification of the partial page at the end of an object is written out &lt;br /&gt;
|| Test case map a file  with size of 1/2 * page_size, then write char &#039;b&#039; to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character &#039;b&#039;. Test on all platforms are failed. The reason is after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. &lt;br /&gt;
&lt;br /&gt;
The mapped page is cached.&lt;br /&gt;
&lt;br /&gt;
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==&amp;gt;  sys_mmap_pgoff() ==&amp;gt; do_mmap_pgoff() ==&amp;gt; mmap_region() ==&amp;gt; file-&amp;gt;f_op-&amp;gt;mmap(). In ext3 file system, file-&amp;gt;f_op-&amp;gt;mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the &#039;&#039;&#039;Page Fault Exception Handler&#039;&#039;&#039; to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache. &lt;br /&gt;
 || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/11-5                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand || Modification of the partial page at the end of an object is written out  || Same with mmap/11-4, and this test case is to test share memory, so file-&amp;gt;f_op-&amp;gt;mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==&amp;gt; shmem_getpage() ==&amp;gt;  shmem_getpage_gfp() ==&amp;gt; find_lock_page(). In find_lock_page() it will search the desired pagecache page. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/27-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || eglibc has define macro MAP_FIXED, and test case check  MAP_FIXED defined then quit with PTS_UNTESTED || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/28-1                    || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test mmap() with length 2 timed file size expect fail with errno ENXIO( No such device or address) but successed. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| mmap/31-1                    || POSIX || qemu-arm qemu-ppc mpc8315e beagleboard sugarbay blacksand ||&lt;br /&gt;
&lt;br /&gt;
off: fffff000, len: fffff000&lt;br /&gt;
&lt;br /&gt;
expect EOVERFLOW but get other error: Cannot allocate memory&lt;br /&gt;
&lt;br /&gt;
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.&lt;br /&gt;
&lt;br /&gt;
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms&lt;br /&gt;
 beagleboard    0xC0000000 - 0x01000000 = 0xBF000000&lt;br /&gt;
 mpc8315e       0xc0000000&lt;br /&gt;
 routerstation  0x7fff8000UL&lt;br /&gt;
 sugarbay       0xffff880000000000&lt;br /&gt;
     || n/a           &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/23-1                 || Ignore   ||  qemu-ppc  || HUNG || qemu-ppc is too slow to fork and schedule, parent process create 1000 child processes and then wait children quit and then it time out. Limited to hardware. || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/2-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/3-1 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/6-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/7-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||  ||  test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/9-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/10-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/12-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/19-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/24-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   ||test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/27-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/29-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/36-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| shm_open/42-1                 || POSIX || qemu-arm beagleboard qemu-mips routerstation qemu-ppc mpc8315e sugarbay blacksand ||   || test code just return PTS_UNTESTED and do nothing || n/a&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7212</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7212"/>
		<updated>2012-08-28T09:14:11Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-64 (sugarbay,update(2012-04-13)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf&lt;br /&gt;
&lt;br /&gt;
 $ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
 $ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-04-13. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-04-13. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-04-13&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.0-1 ||  Failures: 1 ||Failures: 1 ||  Failures: 1 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 26 ||  Failures: 27|| Failures: 67 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.0-2 ||Failures: 27 || Failures: 27  ||  Failures: 30&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 6 || Failures: 24  || Failures: 20&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-13 || Failures: 6 || Failures: 6  || Failures: 8&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 10 || Failures: 10  || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 87 ||  Failures: 87 || Failures: 87&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success  || Failures: 3 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.1-2 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Failures: 2  || Failures: 202 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 25 || Failures: 25  || Failures: 92 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success ||   Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-38 || Success|| Success  || 627&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v 2.2.14-3 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-5 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-10 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-08-28))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7211</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7211"/>
		<updated>2012-08-28T09:13:35Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-64 (sugarbay,update(2012-04-13)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf&lt;br /&gt;
&lt;br /&gt;
 $ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
 $ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-04-13. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-04-13. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-04-13&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.0-1 ||  Failures: 1 ||Failures: 1 ||  Failures: 1 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 26 ||  Failures: 27|| Failures: 67 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.0-2 ||Failures: 27 || Failures: 27  ||  Failures: 30&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 6 || Failures: 24  || Failures: 20&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-13 || Failures: 6 || Failures: 6  || Failures: 8&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 10 || Failures: 10  || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 87 ||  Failures: 87 || Failures: 87&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success  || Failures: 3 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.1-2 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Failures: 2  || Failures: 202 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 25 || Failures: 25  || Failures: 92 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success ||   Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-38 || Success|| Success  || 627&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v 2.2.14-3 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-5 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-10 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-04-13))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || 0 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 33 || 1 || ghashtable 5 has been fixed but still fail &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 33 || 33 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 14 || 14 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 8 || 8 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 20 || ?? || ?? || &#039;&#039;&#039;This is result of snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039; Printing Tests&#039;&#039;&#039; || 1  || 1 ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || 1 || 1 || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7210</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7210"/>
		<updated>2012-08-28T09:07:01Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2849&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/1.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/2.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
 &lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3,15|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231 They are removed as bugzillia says ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xml2-Azov Tests || || /XML_SAX2_Parser-t2c/tests/XML_SAX2_Parser/XML_SAX2_Parser || 32,37 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3110&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86,x86-64,ppc || N || Known Problem ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
This case is a &#039;&#039;&#039;Known Problem&#039;&#039;&#039; with snapshot lsb-test-perl 4.1.6-2 &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3276&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86,x86-64,ppc || N || &#039;&#039;&#039;snapshot passes&#039;&#039;&#039; || PASS in snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86,x86-64,ppc || N || &#039;&#039;&#039;snapshot passes&#039;&#039;&#039; || PASS in snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t || 397 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; ||  || Fails in snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t || 432 || x86, x86-64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N || &#039;&#039;&#039;snapshot passes&#039;&#039;&#039; || PASS in snapshot lsb-test-perl 4.1.6-2&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || x86,x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7209</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7209"/>
		<updated>2012-08-28T07:29:44Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2849&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/1.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/2.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
 &lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7208</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7208"/>
		<updated>2012-08-28T07:15:20Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2849&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/1.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /27_io/ios_base/storage/2.cc || 1 || &#039;&#039;&#039;x86-64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7207</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7207"/>
		<updated>2012-08-28T06:57:54Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2849&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7206</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7206"/>
		<updated>2012-08-28T06:47:43Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.pathconf  || 15 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7205</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7205"/>
		<updated>2012-08-28T06:41:05Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7191</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7191"/>
		<updated>2012-08-27T01:51:57Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2012-04-13)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf&lt;br /&gt;
&lt;br /&gt;
 $ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
 $ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-04-13. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-04-13. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-04-13&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.0-1 ||  Failures: 1 ||Failures: 1 ||  Failures: 1 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 26 ||  Failures: 27|| Failures: 67 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.0-2 ||Failures: 27 || Failures: 27  ||  Failures: 30&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 6 || Failures: 24  || Failures: 20&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-13 || Failures: 6 || Failures: 6  || Failures: 8&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 10 || Failures: 10  || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 87 ||  Failures: 87 || Failures: 87&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success  || Failures: 3 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.1-2 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Failures: 2  || Failures: 202 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 25 || Failures: 25  || Failures: 92 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success ||   Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-38 || Success|| Success  || 627&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v 2.2.14-3 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-5 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-10 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-08-24))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-04-13))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 1 || || 1 || as the same result as x86&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 27 || 26 || 1 ||Need to investigate this in Yocto 1.3     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 6 || 6 ||  || as the same result as x86&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 27 || 27 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 24 || 24 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 10 || 10 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 || || as the same result as x86    &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 25 || 25 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7189</id>
		<title>LSB Result</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Result&amp;diff=7189"/>
		<updated>2012-08-24T10:01:05Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* x86-32 (emenlow,update(2012-04-13)) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
The Linux Standard Base(LSB) was created to lower the overall costs of supporting the Linux platform. By reducing the differences between individual Linux distributions, the LSB greatly reduces the costs involved with porting applications to different distributions, as well as lowers the cost and effort involved in after-market support of those applications. (http://www.linuxfoundation.org/collaborate/workgroups/lsb)&lt;br /&gt;
&lt;br /&gt;
LSB Test Suite support the following architecture.&lt;br /&gt;
*i486&lt;br /&gt;
*ia64&lt;br /&gt;
*ppc32&lt;br /&gt;
*ppc64&lt;br /&gt;
*s390&lt;br /&gt;
*s390x&lt;br /&gt;
*x86_64&lt;br /&gt;
LSB doesn&#039;t support arm and mips at present and maybe support in the future.&lt;br /&gt;
YOCTO will make lsb test before releasing a new version.&lt;br /&gt;
&lt;br /&gt;
Fixing bugs reported by LSB Test Suite has completed  on Mar 5th 2012. All of bugs have been fixed at that point.  But some new bugs arise during lsb test recently because of the updating for OE-Core since Mar 5th 2012. These new bugs will be fixed in 1.3.&lt;br /&gt;
&lt;br /&gt;
==Test Environment==&lt;br /&gt;
* Image: core-image-lsb-qt3&lt;br /&gt;
* Platform: x86-32(emenlow), x86-64(jasperforest), ppc(mpc8315e-rdb)&lt;br /&gt;
* Version of LSB Test Suite: 4.1&lt;br /&gt;
&lt;br /&gt;
==Setup test environment ==&lt;br /&gt;
&lt;br /&gt;
We setup LSB test environment on emenlow as an example.&lt;br /&gt;
&lt;br /&gt;
* Build the image&lt;br /&gt;
1. Download the poky source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/poky.git&lt;br /&gt;
&lt;br /&gt;
2. Download the intel BSP meta source&lt;br /&gt;
&lt;br /&gt;
 $ cd poky&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-intel.git&lt;br /&gt;
&lt;br /&gt;
3. Downloand the qt3 meta source&lt;br /&gt;
&lt;br /&gt;
 $ git clone git://git.pokylinux.org/meta-qt3.git&lt;br /&gt;
&lt;br /&gt;
4. Prepare the build environment &lt;br /&gt;
&lt;br /&gt;
 $ source oe-init-build-env&lt;br /&gt;
&lt;br /&gt;
5. Edit the conf/bblayers.conf and conf/local.conf&lt;br /&gt;
&lt;br /&gt;
 $ vi conf/bblayers.conf &lt;br /&gt;
 …...&lt;br /&gt;
 BBLAYERS = &amp;quot; \ &lt;br /&gt;
   ##COREBASE##/meta \ &lt;br /&gt;
   ##COREBASE##/meta-yocto \ &lt;br /&gt;
   ##COREBASE##/meta-intel \&lt;br /&gt;
   ##COREBASE##/meta-intel/meta-emenlow \ &lt;br /&gt;
   ##COREBASE##/meta-qt3 \&lt;br /&gt;
 “&lt;br /&gt;
 $ vi conf/local.conf&lt;br /&gt;
 …...&lt;br /&gt;
 MACHINE ?= &amp;quot;emenlow&amp;quot;&lt;br /&gt;
 …... &lt;br /&gt;
 DISTRO ?= &amp;quot;poky-lsb &lt;br /&gt;
 …...&lt;br /&gt;
&lt;br /&gt;
6. Build&lt;br /&gt;
&lt;br /&gt;
 $ bitbake core-image-lsb-qt3&lt;br /&gt;
&lt;br /&gt;
When build successfully, you can find the kernel, rootfs image, rootfs cpio tarball, and modules tarball in build/tmp/deploy/images direcotry. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install system&lt;br /&gt;
&lt;br /&gt;
We assume that there is already a default OS on target(You can install the system by following the README.hardware in poky source). In order to install the new system, you need to prepare a free disk partition. If not, you need to create it by running &#039;fdisk&#039; command. We assume the free disk partition is /dev/sda5. &lt;br /&gt;
&lt;br /&gt;
There are 2 ways to install the rootfs to the target: Using rootfs image or using rootfs cpio tarball.&lt;br /&gt;
	 &lt;br /&gt;
Using rootfs image:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.ext3 to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.ext3 root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.ext3 to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ dd if=core-image-lsb-qt3-emenlow.ext3 of=/dev/sda5 &lt;br /&gt;
 emenlow$ umount /mnt &lt;br /&gt;
 emenlow$ e2fsck -f /dev/sda5 &lt;br /&gt;
 emenlow$ resize2fs /dev/sda5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using rootfs cpio tarball:&lt;br /&gt;
&lt;br /&gt;
1. Boot up the emenlow hardware by default mode.&lt;br /&gt;
&lt;br /&gt;
2. Copy core-image-lsb-qt3-emenlow.cpio.gz to emenlow from host:&lt;br /&gt;
&lt;br /&gt;
 $ scp core-image-lsb-qt3-emenlow.cpio.gz root@emenlow-ip:/&lt;br /&gt;
&lt;br /&gt;
3. Install the core-image-lsb-qt3-emenlow.cpio.gz to a free disk partition.&lt;br /&gt;
&lt;br /&gt;
 emenlow$ gzip -d core-image-lsb-qt3-emenlow.cpio.gz&lt;br /&gt;
 emenlow$ mount /dev/sda5 /mnt &lt;br /&gt;
 emenlow$ cd /mnt; cpio -ivdm &amp;lt;../core-image-lsb-qt3-emenlow.cpio &lt;br /&gt;
 emenlow$ sync; umount /mnt  &lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
Then install the kernel and modified the grub.&lt;br /&gt;
&lt;br /&gt;
1. Copy kernel to emenlow from host. We assume your boot disk partition is /dev/sda1:&lt;br /&gt;
&lt;br /&gt;
 $ scp bzImage-emenlow.bin root@emenlow-ip:/&lt;br /&gt;
 $ mount /dev/sda1 /mnt&lt;br /&gt;
 $ cp bzImage-emenlow.bin /mnt/boot/bzImage&lt;br /&gt;
&lt;br /&gt;
2. Modify grub menu.lst&lt;br /&gt;
 $ vi /mnt/boot/grub/menu.lst&lt;br /&gt;
&lt;br /&gt;
add new lines as below: &lt;br /&gt;
&lt;br /&gt;
 title LSB &lt;br /&gt;
 root  (hd0,0) &lt;br /&gt;
 kernel /boot/bzImage root=/dev/sda5 rw&lt;br /&gt;
&lt;br /&gt;
You can also change the default boot sequence.&lt;br /&gt;
&lt;br /&gt;
3. Restart the emenlow&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Install LSB testsuite&lt;br /&gt;
&lt;br /&gt;
You can follow the [[File:LSB_Test.pdf‎]] to install and run LSB test.&lt;br /&gt;
&lt;br /&gt;
==Result==&lt;br /&gt;
Below table shows the result of LSB Test on different platforms.&lt;br /&gt;
* X86(emenlow) result is updated in 2012-04-13. &lt;br /&gt;
* X86-64(sugarbay) result is updated in 2012-04-13. &lt;br /&gt;
* Ppc32(mpc8315e-rdb) result is updated in 2012-04-13&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Version&#039;&#039;&#039; || &#039;&#039;&#039;X86-32(emenlow)&#039;&#039;&#039; || &#039;&#039;&#039;X86-64(sugarbay)&#039;&#039;&#039; || &#039;&#039;&#039;ppc(mpc8315e-rdb)&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Command Check&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || v 4.1.0-1 ||  Failures: 1 ||Failures: 1 ||  Failures: 1 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Alsa-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 26 ||  Failures: 27|| Failures: 67 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Cpp-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || v 4.1.0-2 ||Failures: 27 || Failures: 27  ||  Failures: 30&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 6 || Failures: 24  || Failures: 20&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || v 4.1.0-13 || Failures: 6 || Failures: 6  || Failures: 8&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 10 || Failures: 10  || Block &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || v 4.1.0-1 || Failures: 87 ||  Failures: 87 || Failures: 87&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Success  || Failures: 3 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Runtime Tests&#039;&#039;&#039; || v 4.1.1-2 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 || Success || Failures: 2  || Failures: 202 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Failures: 25 || Failures: 25  || Failures: 92 &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xml2-Azov Tests&#039;&#039;&#039; || v 4.1.0-1 ||Success ||   Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xts5 Tests&#039;&#039;&#039; || v 5.1.5-38 || Success|| Success  || 627&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Apache Tests&#039;&#039;&#039; || v 2.2.14-3 || Success || Success ||  Success&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Expect Tests&#039;&#039;&#039; || v 5.43.0-11 || Success || Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Groff Tests&#039;&#039;&#039; || v 1.20.1-5 || Success || Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Raptor Tests&#039;&#039;&#039; || v 1.4.19-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Rsync Tests&#039;&#039;&#039; || v 3.0.6-3 || Success ||  Success || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Samba Tests&#039;&#039;&#039; || v 3.4.3-5 || Success ||Success  || Success &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || v 8.5.7-6 || Failures:1 ||  Success|| Sucess&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Xpdf Tests&#039;&#039;&#039; || v 1.01-10 || Success || Success  || Failures: 1 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis of result==&lt;br /&gt;
Below table shows the failed test cases.&lt;br /&gt;
* &#039;&#039;&#039;Total failures&#039;&#039;&#039;: The number of total failures after running test. It includes known problems and real failures which should be fixed.&lt;br /&gt;
* &#039;&#039;&#039;[[LSB_Bug_tracker | Known problem]]&#039;&#039;&#039;: Known problem means it is a bug of LSB itself and we can find trace these bugs on http://bugs.linuxbase.org. On link page we give a summary of known problems.&lt;br /&gt;
* &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; : Real failures we should fix them&lt;br /&gt;
* &#039;&#039;&#039;Test suite error&#039;&#039;&#039; : Caused by two reasons: one is for absent library needed by test suite. one is that test suite could lose some function which should be included in it.&lt;br /&gt;
===x86-32 (emenlow,update(2012-04-13))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 31 || 31 ||  ||      &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 0 || ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version libstdc++.  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 34 || 34 ||   || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 16 || 16 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 9 || 9 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 88 || 88 ||  || all of these bugs go beyond the capacity of LSB 4.1. Perhaps, LSB 5.0 have the capacity to test high version perl&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Python Tests&#039;&#039;&#039; || 2 || 2 || ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 8 || 8 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;  Xts5 Tests&#039;&#039;&#039; || 1 || 1 ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Tcl Tests&#039;&#039;&#039; || 1 || 1 ||  || Test abort https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3496&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===x86-64 (sugarbay,update(2012-04-13))===&lt;br /&gt;
 &lt;br /&gt;
* &#039;&#039;&#039;New problem&#039;&#039;&#039;: It is a bug without arising on previous version. It could be caused by some patches updated every day.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || 1 || || 1 || as the same result as x86&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 27 || 26 || 1 ||Need to investigate this in Yocto 1.3     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 6 || 6 ||  || as the same result as x86&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 27 || 27 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 24 || 24 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; || 10 || 10 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 || || as the same result as x86    &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov Tests&#039;&#039;&#039; || 25 || 25 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3 Tests&#039;&#039;&#039; || 2 || 2 || ||  &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===ppc(mpc8315e,update (2012-04-13))===&lt;br /&gt;
We have the following failures(including &amp;quot;unresolved&amp;quot; and &amp;quot;failed&amp;quot;) to fix. &lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039; || &#039;&#039;&#039;Total failures&#039;&#039;&#039; || &#039;&#039;&#039;Known problem&#039;&#039;&#039; || &#039;&#039;&#039;Failures(need to fix)&#039;&#039;&#039; || &#039;&#039;&#039;Note&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Core Tests&#039;&#039;&#039; || 67 || 67 ||  ||     &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop Tests&#039;&#039;&#039; || 30 || 30||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Desktop-T2C Tests&#039;&#039;&#039; || 20 || 20 ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Libstdc++ Tests&#039;&#039;&#039; || 8 || 8  ||  || &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;OLVER Core Tests&#039;&#039;&#039; ||  ||  ||   || Blocked &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Perl Tests&#039;&#039;&#039; || 87 || 87 ||  ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Printing Tests&#039;&#039;&#039; || 3 || 3 ||   ||  &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt3-Azov&#039;&#039;&#039; || 202 ||  ||  ||  No enough memory&lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Qt4-Azov&#039;&#039;&#039; || 92 || 92 ||  || as same as Qt3&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
*For new problem, it has others besides the problems emenlow has&lt;br /&gt;
** Qt4-Azov Tests&lt;br /&gt;
*** &amp;quot;Child process timed out&amp;quot; caused many unresolved items&lt;br /&gt;
** No locale and charmap in the latest lsb image, there were many failures because of the absent of locale resources. &lt;br /&gt;
*Illegal instruction(Known problem http://bugs.linuxbase.org/show_bug.cgi?id=3253)&lt;br /&gt;
** 65 SIGILL error &lt;br /&gt;
*** Core Tests&lt;br /&gt;
**** /tset/ANSI.os/math/... : SIGILL cause 47 unresolved failures.&lt;br /&gt;
**** /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid (1st--2nd)&lt;br /&gt;
*** Desktop-t2c Tests&lt;br /&gt;
**** /glib-t2c/tests/glib_random/glib_random (9th--23rd)&lt;br /&gt;
*** Xpdf Tests&lt;br /&gt;
**** pdftotext&lt;br /&gt;
** It was caused by the difference of compilation tool between LSB Test Suite and mpc8315e. In fact, instruction &amp;quot;fsqrt&amp;quot; doesn&#039;t exist on e300core serial and CPU of mpc8315e belongs to e300core type. So this problem can&#039;t be solved for mpc8315e  &lt;br /&gt;
* OLVER Core Tests:&lt;br /&gt;
** OLVER Core Tests can&#039;t be finished on mpc8315e-rdb&lt;br /&gt;
** We think the reason which make test blocked is the low memory(128M on mpc8315e). Because we re-run the test case which is blocked during OLVER core tests and it can pass successfully. That is to say, if we run the single test case, it will be passed. But we run all OLVER core tests and the whole tests will be blocked. We have ever run OLVER Core Tests for nearly 50 hours and it can&#039;t finish.&lt;br /&gt;
** lsb-test-olver-core may require about 512Mb of system memory (with an X server and a contemporary desktop running), as well as 2Gb of free disk space to complete a test run. The reference linkage: http://ldn.linuxfoundation.org/lsb/preparing-lsb-distribution-testing&lt;br /&gt;
* Qt3-Azov Tests, Printing Tests &lt;br /&gt;
** Out of memory error cause all of the failures, the information like the following arise on screen when running Qt3 and Printing test suite&lt;br /&gt;
          &lt;br /&gt;
    Killed process 22453 (Xvfb) total-vm:84064kB, anon-rss:73720kB, file-rss:8kB&lt;br /&gt;
    run-parts invoked oom-killer: gfp_mask=0xd0, order=1, oom_adj=0,&lt;br /&gt;
    oom_score_adj=0&lt;br /&gt;
    Call Trace:&lt;br /&gt;
    [c0cadc90] [c0009f3c] show_stack+0x108/0x1c4 (unreliable)&lt;br /&gt;
    [c0cadce0] [c0431098] dump_stack+0x2c/0x44&lt;br /&gt;
    [c0cadcf0] [c00a1880] dump_header.clone.14+0x70/0x184&lt;br /&gt;
    [c0cadd30] [c00a1b80] oom_kill_process.clone.16+0x94/0x294&lt;br /&gt;
    [c0cadd60] [c00a222c] out_of_memory+0x270/0x33c&lt;br /&gt;
    [c0caddb0] [c00a6628] __alloc_pages_nodemask+0x624/0x65c&lt;br /&gt;
    [c0cade50] [c00a6694] __get_free_pages+0x34/0x6c&lt;br /&gt;
    [c0cade60] [c00269f8] copy_process+0xe4/0xd84   &lt;br /&gt;
    [c0cadec0] [c0027764] do_fork+0x80/0x39c&lt;br /&gt;
    [c0cadf20] [c0009cb4] sys_vfork+0x68/0x80&lt;br /&gt;
    [c0cadf40] [c0011d0c] ret_from_syscall+0x0/0x38       &lt;br /&gt;
      --- Exception: c00 at 0xfecc358&lt;br /&gt;
      LR = 0x10084518&lt;br /&gt;
&lt;br /&gt;
** I think this should be  limited memory problem&lt;br /&gt;
* Libstdc++ Tests&lt;br /&gt;
** /26_numerics/complex/13450.cc&lt;br /&gt;
*** This test case check whether data type &amp;quot;long double&amp;quot; can&#039;t be supported or not on ppc. Mp8315e deviates from what the test expects. It is Known problem.&lt;br /&gt;
** /27_io/basic_stringbuf/overflow/wchar_&lt;br /&gt;
&lt;br /&gt;
==Failures tracker(update 2012-04-13)==&lt;br /&gt;
We should fix the following problems. We also filed bugs for them and try to fix them.&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
||  &#039;&#039;&#039;Tests&#039;&#039;&#039; || &#039;&#039;&#039;Sub Tests&#039;&#039;&#039; || &#039;&#039;&#039;Test Number&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Bug ID of yocto&#039;&#039;&#039; || &#039;&#039;&#039;Proposal suggestion&#039;&#039;&#039; &lt;br /&gt;
|-&lt;br /&gt;
|| &#039;&#039;&#039;Library Check&#039;&#039;&#039; || || Unable to find library libgdk_pixbuf_xlib-2.0.so.0|| x86,x86-64,ppc||  ||This bug need to fix in 1.3&lt;br /&gt;
|-&lt;br /&gt;
||&#039;&#039;&#039;Core Tests&#039;&#039;&#039;|| ||/tset/LSB.pam/testcases/pam_fail_delay/pam_fail_delay 2||x86-64|| ||This bug need to be investigated deeply &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Known problems tracker==&lt;br /&gt;
See details on [[LSB_Bug_tracker | Known problems tracker]]&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7188</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7188"/>
		<updated>2012-08-24T09:54:16Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || ppc || N || Known Problem || PASS on x86 http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
|| Printing Tests ||   || /testfoomaticrip/testfoomaticrip || 2 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3272&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7187</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7187"/>
		<updated>2012-08-24T08:18:42Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-64 || N || Known Problem || PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-64 || N || Known Problem || &lt;br /&gt;
PASS on x86&lt;br /&gt;
http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7186</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7186"/>
		<updated>2012-08-24T08:10:22Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || x86,x86-64,ppc || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || x86,x86_64,ppc || N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86,x86_64,ppc||N || Snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182 &lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86,x86_64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7185</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7185"/>
		<updated>2012-08-24T07:54:17Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2C ||  || /atk-t2c/tests/AtkObject_signals/AtkObject_signals || 13,14,22,23 || x86, || N || Upstream || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3415&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3412&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7184</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7184"/>
		<updated>2012-08-24T07:45:08Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3408&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7183</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7183"/>
		<updated>2012-08-24T07:43:08Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3133&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7101</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7101"/>
		<updated>2012-08-21T08:28:15Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; ||  N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3317&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3287&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7100</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7100"/>
		<updated>2012-08-21T08:11:05Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| N || Snapshot pass || || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3449&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7099</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7099"/>
		<updated>2012-08-21T08:03:16Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */ - desktop-xml&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3455&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
ses||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
	<entry>
		<id>https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7098</id>
		<title>LSB Bug tracker</title>
		<link rel="alternate" type="text/html" href="https://wiki.yoctoproject.org/wiki/index.php?title=LSB_Bug_tracker&amp;diff=7098"/>
		<updated>2012-08-21T07:59:30Z</updated>

		<summary type="html">&lt;p&gt;Kai.kang: /* LSB Bug tracker(build 2012-07-25) */ - desktop-qt4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==LSB Bug tracker(build 2012-07-25)==&lt;br /&gt;
Below table is a summary of known problems during LSB tests. We can find these issues on http://bugs.linuxbase.org. Some bugs go beyond the capacity of LSB 4.1 because of the faster updating speed than LSB Test Suite for some packages. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
|| &#039;&#039;&#039;Test&#039;&#039;&#039;  || &#039;&#039;&#039;SubTest&#039;&#039;&#039; || &#039;&#039;&#039;TestCase&#039;&#039;&#039; || &#039;&#039;&#039;TestNumber&#039;&#039;&#039; || &#039;&#039;&#039;Arch&#039;&#039;&#039; || &#039;&#039;&#039;Need fix?&#039;&#039;&#039; || &#039;&#039;&#039;Notes&#039;&#039;&#039; || &#039;&#039;&#039;Upstream Bugtracker&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Library Check || || libm.so.6 || 15 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || N ||  || &#039;&#039;&#039;It doesn&#039;t appear again&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/maths/*  || 47 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/ANSI.os/streamio/freopen/T.freopen || 33, 34, 38 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3436&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswcntrl/T.iswcntrl 1st  || 1 || ppc || N || Upstream ||Compilation tool of LSB cause this problem, Compile test suite&#039;s source codes with poky compilation tool and no this problem. It can pass test with private test suite from Linux Foundation which will be merged to new version. http://dev.linuxfoundation.org/~stewb/ppc32/lsb-test-core-4.1.9-1.1.ppc.rpm  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswdigit/T.iswdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswlower/T.iswlower 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswupper/T.iswupper  1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LI18NUX2K.L1/base/iswxdigit/T.iswxdigit 1st  || 1 || ppc || N || Upstream ||the same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.fhs/var/lib-hwclock/lib-hwclock-tc ||1|| x86,x86-64,ppc|| N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3116(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/files/dev_tty/T.dev_tty  || 1  || ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3228&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/readv_L/T.readv_L || 24 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844  &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/ioprim/writev_L/T.writev_L || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=844 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/LSB.os/libm/fpeInvalid/T.fpeInvalid  || 2 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/gethostbyaddr/T.gethostbyaddr ||2|| x86,x86-64,ppc|| N||Known Problem ||Absent startup program avahi-daemon(Fixed). &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvfrom/T.recvfrom || 3 || x86,x86_64,ppc || N || Known Problem. doesn&#039;t fail when test this single case again. || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3523&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || /tset/LSB.os/network/recvmsg/T.recvmsg || 3 || x86,x86_64 || N || Known Problem. doesn&#039;t fail when test this single case again || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3525&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests  ||   || &#039;&#039;&#039;/tset/LSB.os/network/sendto/T.sendto&#039;&#039;&#039; || 10 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/c_iflag/T.c_iflag || 6, 7, 8, 9 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033&lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/devclass/T.tcgetattr || 1, 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3033 &lt;br /&gt;
|-&lt;br /&gt;
|| Core Tests ||   || /tset/POSIX.os/files/fpathconf/T.fpathconf  || 15,16 || x86,x86-64,ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3078&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||   || /tset/POSIX.os/procprim/fork/T.fork ||5|| x86-64 || N||Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=2270(fixed after 4.1)&lt;br /&gt;
|-&lt;br /&gt;
|| Core test  ||    || &#039;&#039;&#039;/tset/LSB.usersgroups/commands/misc/T.misc&#039;&#039;&#039; || 41-44 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039;|| || &lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Param_Value/Param_Value || 20 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3044 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Selection/Selections || 33, 34 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011 &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts|| /tests/functions/Keyboard_Accelerator_Groups/Keyboard_Accelerator_Groups || 27-29 || x86,x86-64,ppc|| N ||Known Problem||Function &amp;quot;gtk_accelerator_name&amp;quot; from gtk/gtkaccelgroup.c has been changed since version 2.24.8. So this is incorrect test case now.(Upstream, Don&#039;t need fix) &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts || /tests/functions/Themeable_Stock_Images/Themeable_Stock_Images || 195-210 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3011  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| desktop-gtkvts||/tests/functions/GtkTreeSortable/GtkTreeSortable ||15-18 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3238&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-gtkvts || /tests/functions/MainLoop/MainLoop || 7 || &#039;&#039;&#039;ppc&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || Timing problem when testing in a VM ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests|| || /tests/functions/SpawnProc/SpawnProc 2nd (unresolved) || 2 || ppc || N ||Known Problem ||http://bugzilla.pokylinux.org/show_bug.cgi?id=1117&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop Tests || || /tests/functions/GHashTable/GHashTable|| 5 ||x86-32,x86-64,ppc|| N || snapshot pass ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_constructor_QString || 1,2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-qt4 || tst_QHostAddress_scopeId || 6 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3271&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_3 || 10 || x86,x86_64 || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_14 || 25 || x86,x86_64 || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop Tests || desktop-xml || XML_22 || 4,5 || x86,x86_64 || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2c || ||/atk-t2c/tests/AtkObject_relation/AtkObject_relation || 2,5,6 || x86,x86-64,ppc || N || Upstream ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3189&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c|| ||/gobject-t2c/tests/gobject_value_arrays/gobject_value_arrays || 24 || x86,x86-64,ppc || N ||Upstream ||codes of qsort_r has changed since 2.30.2 So this is upstream problem. The higher version of LSB could modify this problem.&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-T2c || ||/gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86.x86-64,ppc || N || Upstream  ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3184&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-T2C Tests ||   || /freetype-t2c/tests/truetype_tables/truetype_tables || 2 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3153&lt;br /&gt;
|- &lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 36 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3042&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_threads/glib_threads  || 8 || x86,x86_64,ppc || N || Known Problem  || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3416&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_main_event_loop/glib_main_event_loop || 17 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3413&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /glib-t2c/tests/glib_messagelog/glib_messagelog || 8 || x86,x86_64,ppc || N|| Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3417&lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||    || /gobject-t2c/tests/gobject_closures/gobject_closures || 7,8 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3474&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Desktop-T2C ||   || /gobject-t2c/tests/gobject_gtype_instance/gobject_gtype_instance || 39 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3184  &lt;br /&gt;
|-&lt;br /&gt;
|| Desktop-t2c ||   ||/glib-t2c/tests/glib_random/glib_random 9th-23th || 14 || ppc || N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/cons/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/char/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /21_strings/basic_string/insert/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /22_locale/num_put/put/char/9780-2.cc || 1 || x86,x86_64,ppc || &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests||   ||/26_numerics/complex/13450.cc || 7 || ppc || N||Known Problem||http://bugs.linuxbase.org/show_bug.cgi?id=2447&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/char/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||It beyonds LSB Test Suite&#039;s power, LSB version is 4.1, to test higher version library libstdc++. More high version of LSB Test Suite will fix it.&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3182&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_filebuf/sync/wchar_t/1.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/char/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/27_io/basic_istream/tellg/wchar_t/8348.cc || 1 || &#039;&#039;&#039;x86-64,ppc&#039;&#039;&#039; || N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/abi_examples/14.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
|- &lt;br /&gt;
|| Libstdc++ Tests || ||/demangle/regression/cw-13.cc || 1 || x86-32,x86-64,ppc||N || Snapshot pass ||the same as above&lt;br /&gt;
ses||&lt;br /&gt;
|-&lt;br /&gt;
|| Libstdc++ Tests || || /demangle/regression/cw-16.cc || 1 || x86-32,x86-64,ppc|| &#039;&#039;&#039;Y&#039;&#039;&#039; || ||&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/math/cexp/tests/cpow_spec || 5162 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2912 &lt;br /&gt;
|- &lt;br /&gt;
|| OLVER Core Tests || locale_locale&lt;br /&gt;
_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_insert_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 2 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_string&lt;br /&gt;
_add_scenario &lt;br /&gt;
|| /olver/other/other/tests/others || 3 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/other/other/tests/others || 561 || x86-32, x86-64 || N || Known Problem || http://linuxtesting.org/results/report?num=S0561  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 4 || x86,x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || ncurses_line&lt;br /&gt;
_rip_scenario&lt;br /&gt;
|| /olver/other/other/tests/others || 5 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2871&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests  ||   || /olver/other/other/tests/others || 6 || x86-64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3491&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/deflateSetDictionary_spec || 1 || &#039;&#039;&#039;x86&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3439&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/get_crc_table_spec || 1 || &#039;&#039;&#039;x86_64&#039;&#039;&#039; || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3441&lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/compress/tests/gzputc_spec || 1 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3057  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/getdata_spec || 803 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2913 &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests ||   || /olver/util/format/tests/strptime_spec || 810, 808 || x86-32, x86-64 || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2914  &lt;br /&gt;
|-&lt;br /&gt;
|| OLVER Core Tests || || /Normal_Test-t2c/tests/QSessionManager/QSessionManager ||1 ||x86, x86-64,ppc||N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=343&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Qt3-Azov Tests  || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||3|| x86-64|| N||Known Problem||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt3-Azov Tests || ||/Qt3_Object_Model-t2c/tests/QMetaObject/QMetaObject ||15|| x86-64||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3231(Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests|| || /Normal_Test-t2c/tests/QSessionManager/QSessionManager|| 1-20|| x86 ||N||Known Problem ||https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3454 (Upstream, Don&#039;t need fix) ||&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Input_Output-t2c/tests/QFileInfo/QFileInfo || 45 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3034  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Menus-t2c/tests/QMenuBar/QMenuBar || 30 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3124  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt5_Menus-t2c/tests/QMenuBar/QMenuBar || 49 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3067  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Miscellaneous-t2c/tests/Qt4_Miscellaneous/Qt4_Miscellaneous || 1 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3134  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Paint_Device-t2c/tests/QPixmap/QPixmap || 67 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3274&lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_SQL-t2c/tests/QSqlTableModel/QSqlTableModel || 46 || x86-32, x86-64, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2782  &lt;br /&gt;
|-&lt;br /&gt;
|| Qt4-Azov Tests ||   || /Qt4_Widgets-t2c/tests/QListView/QListView || 59 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3275&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Perl Tests ||  ||../ext/IPC/SysV/t/ipcsysv.t || 294 || x86-32, x86-64,ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3249&lt;br /&gt;
|-&lt;br /&gt;
|| Perl Tests ||  ||op/pat.t || 142  || x86-32, x86-64,ppc|| N || Known Problem ||http://bugs.linuxbase.org/show_bug.cgi?id=3194&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||all/tst_perlModPresent.pl ||1|| x86, x86-64,ppc || N ||Upstream ||LSB 4.1 hasn&#039;t capability to test perl-5.14.2 because there are too many changes for new version perl than the old. So this is upstream problem. We can resolve this problem until the newer version for lsb test suite.(Upstream, Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/AutoSplit.t ||402|| x86, x86-64,ppc || N ||Upstream || as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/autouse.t ||403|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/00_about_verbose.t ||440|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Class/ISA/t/01_old_junk.t ||441|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Dumpvalue.t ||458|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/English.t ||460|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/basic.t ||466|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/FIRST_MAKEFILE.t ||469|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/Liblist.t ||473|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/PL_FILES.t ||480|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/prereq_print.t ||483|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/recurs.t ||486|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/ExtUtils/t/writemakefile_args.t ||490|| x86,x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/File/CheckTree.t ||493|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/overload.t ||644|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/eol.t ||651|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Pod/t/Usage.t ||659|| x86, x86-64 || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/strict.t ||668|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Test/Simple/t/overload.t ||708|| x86,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
|| Perl test || ||../lib/Unicode/UCD.t ||809|| x86, x86-64,ppc || N ||Upstream ||as same as above&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|| Printing Tests ||   || /testgs/testgs || 7 || x86-32, ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=2994&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 30 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3320&lt;br /&gt;
|-&lt;br /&gt;
|| Python Runtime Tests ||   || /usr/bin/python || 99 || x86,x86_64,ppc || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3286&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Xts5 Tests || ||/tset/Xopen/strtkysym/Test ||7|| x86 || N||Known Problem || host contamination，Add patch &amp;quot;makekeys_crosscompile.patch&amp;quot; to libx11-1.4.4(fixed)&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || ||/tset/Xlib10/kllclnt/Test 2nd || 2 || ppc || N || snapshot passes||&lt;br /&gt;
|-&lt;br /&gt;
|| Xts5 Tests  || || /tset/Xlib7/qryclrs/Test || 2 || x86,x86_64 || N || Known Problem || https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3480&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|| Tcl test || ||exec-9.7|| ||x86 ||N||Known Problem ||The test is ok by testing this case lonely. (Don&#039;t need fix)&lt;br /&gt;
|-&lt;br /&gt;
|| Xpdf Tests ||    ||/opt/lsb/appbat/bin/pdftotext test1.pdf || 1 || ppc || N || Known Problem || http://bugs.linuxbase.org/show_bug.cgi?id=3253&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kai.kang</name></author>
	</entry>
</feed>