summaryrefslogtreecommitdiff
path: root/tests/15-basic-resolver.c
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2013-02-06 11:31:45 -0500
committerPaul Moore <pmoore@redhat.com>2013-02-07 10:12:22 -0500
commit50f8b6261416a8f92329e4e9d2c1ae2a044d3707 (patch)
treefaedfb3edc12c864407c9850d68b61d488fa762a /tests/15-basic-resolver.c
parentf8cfd96455081b70b4a5d91e1972c9055b46a5e0 (diff)
downloadlibseccomp-50f8b6261416a8f92329e4e9d2c1ae2a044d3707.tar.gz
tests: rename the tests to make it clear which are simulator/basic/live based
This patch only renames files, it makes not changes to the content. Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'tests/15-basic-resolver.c')
-rw-r--r--tests/15-basic-resolver.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/15-basic-resolver.c b/tests/15-basic-resolver.c
new file mode 100644
index 0000000..a103a1a
--- /dev/null
+++ b/tests/15-basic-resolver.c
@@ -0,0 +1,59 @@
+/**
+ * Seccomp Library test program
+ *
+ * Copyright (c) 2012 Red Hat <pmoore@redhat.com>
+ * Author: Paul Moore <pmoore@redhat.com>
+ */
+
+/*
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of version 2.1 of the GNU Lesser General Public License as
+ * published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library; if not, see <http://www.gnu.org/licenses>.
+ */
+
+#include <string.h>
+
+#include <seccomp.h>
+
+int main(int argc, char *argv[])
+{
+ char *name;
+
+ if (seccomp_syscall_resolve_name("open") != __NR_open)
+ return 1;
+ if (seccomp_syscall_resolve_name("socket") != __NR_socket)
+ return 1;
+ if (seccomp_syscall_resolve_name("INVALID") != __NR_SCMP_ERROR)
+ return 1;
+
+ if (seccomp_syscall_resolve_name_arch(SCMP_ARCH_NATIVE,
+ "open") != __NR_open)
+ return 1;
+ if (seccomp_syscall_resolve_name_arch(SCMP_ARCH_NATIVE,
+ "socket") != __NR_socket)
+ return 1;
+ if (seccomp_syscall_resolve_name_arch(SCMP_ARCH_NATIVE,
+ "INVALID") != __NR_SCMP_ERROR)
+ return 1;
+
+ name = seccomp_syscall_resolve_num_arch(SCMP_ARCH_NATIVE, __NR_open);
+ if (name == NULL || strcmp(name, "open") != 0)
+ return 1;
+ name = seccomp_syscall_resolve_num_arch(SCMP_ARCH_NATIVE, __NR_socket);
+ if (name == NULL || strcmp(name, "socket") != 0)
+ return 1;
+ name = seccomp_syscall_resolve_num_arch(SCMP_ARCH_NATIVE,
+ __NR_SCMP_ERROR);
+ if (name != NULL)
+ return 1;
+
+ return 0;
+}