aboutsummaryrefslogtreecommitdiff
path: root/tests/fstatat64.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2016-01-05 22:40:17 +0000
committerDmitry V. Levin <ldv@altlinux.org>2016-01-05 22:40:17 +0000
commit2acad73184204c80d1bdc4b9fad10a68f7525efe (patch)
treeaaf7d5c29d40064fcda8f30fdfe943445c6cdd15 /tests/fstatat64.c
parent6c52f2b0faee02e2479d3500f75d020fcb08f3a2 (diff)
downloadstrace-2acad73184204c80d1bdc4b9fad10a68f7525efe.tar.gz
tests/fstatat64.c: use libtests
* tests/fstatat64.c: Use SKIP_MAIN_UNDEFINED.
Diffstat (limited to 'tests/fstatat64.c')
-rw-r--r--tests/fstatat64.c37
1 files changed, 34 insertions, 3 deletions
diff --git a/tests/fstatat64.c b/tests/fstatat64.c
index dbb913f4..286fd7c5 100644
--- a/tests/fstatat64.c
+++ b/tests/fstatat64.c
@@ -1,9 +1,40 @@
+/*
+ * Copyright (c) 2015-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>
-#undef TEST_SYSCALL_NAME
#ifdef __NR_fstatat64
+
# define TEST_SYSCALL_NAME fstatat64
-#endif
+# include "fstatat.c"
-#include "fstatat.c"
+#else
+
+SKIP_MAIN_UNDEFINED("__NR_fstatat64")
+
+#endif