|
From: <sv...@va...> - 2012-12-04 04:47:01
|
florian 2012-12-04 04:46:52 +0000 (Tue, 04 Dec 2012)
New Revision: 13150
Log:
Beef up testcase. Announce fix.
Part of fixing BZ 310931.
Modified files:
trunk/NEWS
trunk/none/tests/s390x/stfle.c
trunk/none/tests/s390x/stfle.stdout.exp
Modified: trunk/none/tests/s390x/stfle.stdout.exp (+1 -0)
===================================================================
--- trunk/none/tests/s390x/stfle.stdout.exp 2012-12-03 13:33:03 +00:00 (rev 13149)
+++ trunk/none/tests/s390x/stfle.stdout.exp 2012-12-04 04:46:52 +00:00 (rev 13150)
@@ -6,3 +6,4 @@
the value of cc is 3 and #double words is 2
the value of cc is 3 and #double words is 2
The z/Architecture architectural mode is installed and active
+No MSA facility available
Modified: trunk/NEWS (+1 -0)
===================================================================
--- trunk/NEWS 2012-12-03 13:33:03 +00:00 (rev 13149)
+++ trunk/NEWS 2012-12-04 04:46:52 +00:00 (rev 13150)
@@ -43,6 +43,7 @@
308644 [390] vgdb command for having the info for the track-fds option
308711 [390] give more info about aspacemgr and arenas in out_of_memory
308886 [390] Missing support for PTRACE_SET/GETREGSET
+310931 [390] s390x: Message-security assist (MSA) instruction extension not implemented
n-i-bz [390] report error for vgdb snapshot requested before execution
n-i-bz [390] Some wrong command line options could be ignored
n-i-bz [390] same as 303624 (fixed in 3.8.0), but for x86 android
Modified: trunk/none/tests/s390x/stfle.c (+6 -0)
===================================================================
--- trunk/none/tests/s390x/stfle.c 2012-12-03 13:33:03 +00:00 (rev 13149)
+++ trunk/none/tests/s390x/stfle.c 2012-12-04 04:46:52 +00:00 (rev 13150)
@@ -52,5 +52,11 @@
else
printf("The z/Architecture architectural mode is not installed\n");
+ /* Test #4: Message security assist */
+ if (stfle(dw, 17)) {
+ printf("MSA facility is present\n");
+ } else {
+ printf("No MSA facility available\n");
+ }
return 0;
}
|