]> granicus.if.org Git - strace/commitdiff
tests: add xetpgid.test
authorDmitry V. Levin <ldv@altlinux.org>
Sun, 14 Feb 2016 17:14:15 +0000 (17:14 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Sun, 14 Feb 2016 22:30:27 +0000 (22:30 +0000)
* tests/xetpgid.c: New file.
* tests/xetpgid.test: New test.
* tests/.gitignore: Add xetpgid.
* tests/Makefile.am (check_PROGRAMS): Likewise.
(TESTS): Add xetpgid.test.

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

index b7da7dd992c65b712bd22cbf6ec8c49de9f3b9be..1cee1f82d955979e9620c334c6707f673ce5e3c7 100644 (file)
@@ -127,4 +127,5 @@ wait
 xattr
 xet_robust_list
 xetitimer
+xetpgid
 xettimeofday
index 81974e3cb91ebbbab5495b6ed1c856fbcbafcf42..b36362a886ef21f111b185cf995302ca11aeac8d 100644 (file)
@@ -175,6 +175,7 @@ check_PROGRAMS = \
        xattr \
        xet_robust_list \
        xetitimer \
+       xetpgid \
        xettimeofday \
        # end of check_PROGRAMS
 
@@ -320,6 +321,7 @@ TESTS = \
        xattr.test \
        xet_robust_list.test \
        xetitimer.test \
+       xetpgid.test \
        xettimeofday.test \
        \
        count.test \
diff --git a/tests/xetpgid.c b/tests/xetpgid.c
new file mode 100644 (file)
index 0000000..f6bf640
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * This file is part of xetpgid strace test.
+ *
+ * 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 <sys/syscall.h>
+
+#if defined __NR_getpgid && defined __NR_setpgid
+
+# include <assert.h>
+# include <stdio.h>
+# include <unistd.h>
+
+int
+main(void)
+{
+       const int pid = getpid();
+       int rc = syscall(__NR_getpgid,
+                        (unsigned long) 0xffffffff00000000 | pid);
+       printf("getpgid(%d) = %d\n", pid, rc);
+
+       rc = syscall(__NR_setpgid,
+                    (unsigned long) 0xffffffff00000000,
+                    (unsigned long) 0xffffffff00000000 | pid);
+       printf("setpgid(0, %d) = %d\n", pid, rc);
+
+       puts("+++ exited with 0 +++");
+       return 0;
+}
+
+#else
+
+SKIP_MAIN_UNDEFINED("__NR_getpgid && __NR_setpgid")
+
+#endif
diff --git a/tests/xetpgid.test b/tests/xetpgid.test
new file mode 100755 (executable)
index 0000000..cdfec11
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Check getpgid and setpgid syscalls decoding.
+
+. "${srcdir=.}/init.sh"
+
+run_prog > /dev/null
+OUT="$LOG.out"
+run_strace -a11 -egetpgid,setpgid $args > "$OUT"
+match_diff "$LOG" "$OUT"
+rm -f "$OUT"