]> granicus.if.org Git - strace/commitdiff
tests: add mlockall.test
authorDmitry V. Levin <ldv@altlinux.org>
Sat, 9 Apr 2016 23:34:18 +0000 (23:34 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Sat, 9 Apr 2016 23:34:18 +0000 (23:34 +0000)
* tests/mlockall.c: New file.
* tests/mlockall.test: New test.
* tests/.gitignore: Add mlockall.
* tests/Makefile.am (check_PROGRAMS): Likewise.
(DECODER_TESTS): Add mlockall.test.

tests/.gitignore
tests/Makefile.am
tests/mlockall.c [new file with mode: 0644]
tests/mlockall.test [new file with mode: 0755]

index 9ef0c037665964b72be2e06c1225a4bcd64b2f5e..d3ff1de7001b34697370be6b3baf4e1d828466b8 100644 (file)
@@ -79,6 +79,7 @@ mincore
 mkdirat
 mknod
 mlock2
+mlockall
 mmap
 mmap64
 mmsg
index 7cd3991bd6b48373f080146b74cf076e8e6a0c2e..9f4371f9fa9af4f52a3d3e593ec7619c8d74c3cb 100644 (file)
@@ -128,6 +128,7 @@ check_PROGRAMS = \
        mkdirat \
        mknod \
        mlock2 \
+       mlockall \
        mmap \
        mmap64 \
        mmsg \
@@ -327,6 +328,7 @@ DECODER_TESTS = \
        mkdirat.test \
        mknod.test \
        mlock2.test \
+       mlockall.test \
        mmap.test \
        mmap64.test \
        mmsg.test \
diff --git a/tests/mlockall.c b/tests/mlockall.c
new file mode 100644 (file)
index 0000000..97cfdcf
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Check decoding of mlockall syscall.
+ *
+ * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "tests.h"
+
+#include <errno.h>
+#include <stdio.h>
+#include <sys/mman.h>
+
+int
+main(void)
+{
+       printf("mlockall(0) = %d EINVAL (%m)\n", mlockall(0));
+
+       if (mlockall(MCL_CURRENT) == 0) {
+               puts("mlockall(MCL_CURRENT) = 0");
+       } else {
+               printf("mlockall(MCL_CURRENT) = -1 %s (%m)\n",
+                      errno == ENOMEM ? "ENOMEM" : "EPERM");
+       }
+
+       puts("+++ exited with 0 +++");
+       return 0;
+}
diff --git a/tests/mlockall.test b/tests/mlockall.test
new file mode 100755 (executable)
index 0000000..d7a6182
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# Check decoding of mlockall syscall.
+
+. "${srcdir=.}/init.sh"
+run_strace_match_diff -a12