]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Beef up testcase. Announce fix.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 4 Dec 2012 04:46:52 +0000 (04:46 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 4 Dec 2012 04:46:52 +0000 (04:46 +0000)
Part of fixing BZ 310931.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13150

NEWS
none/tests/s390x/stfle.c
none/tests/s390x/stfle.stdout.exp

diff --git a/NEWS b/NEWS
index 6cf93c966cab04fee21e822a08080a4b0f47af96..1f6dcc4f5028ec7df79a49cf0bdcb3f4326da0e1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -43,6 +43,7 @@ m = merged into 3_8_BRANCH
 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
index 7bfe2d646149cc53622635bb649d815b7f049ebe..6c8007bf9e7ebd10ddaa14a8d8a4840e047f3922 100644 (file)
@@ -52,5 +52,11 @@ int main()
   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;
 }
index c4653a9859f1b5b5f4491e3a5a3392fced029400..00c2c75bf8aac59bfcf9fe12076bb60e04b31ee5 100644 (file)
@@ -6,3 +6,4 @@ STFLE facility is installed
 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