about summary refs log tree commit diff
path: root/libio/tst-vtables.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-06-26 12:20:44 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-06-26 12:31:08 +0200
commit29055464a03c72762969a2e8734d0d05d4d70e58 (patch)
treefa2ee34758dc4595537bcfb7776e16e2ce82fc70 /libio/tst-vtables.c
parent5c0202af4b3d588c04bcec7baf05706b21cd7416 (diff)
downloadglibc-29055464a03c72762969a2e8734d0d05d4d70e58.tar.gz
glibc-29055464a03c72762969a2e8734d0d05d4d70e58.tar.xz
glibc-29055464a03c72762969a2e8734d0d05d4d70e58.zip
libio: Add tst-vtables, tst-vtables-interposed
Diffstat (limited to 'libio/tst-vtables.c')
-rw-r--r--libio/tst-vtables.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/libio/tst-vtables.c b/libio/tst-vtables.c
new file mode 100644
index 0000000000..c31a552f61
--- /dev/null
+++ b/libio/tst-vtables.c
@@ -0,0 +1,27 @@
+/* Test for libio vtables and their validation.  Initially disabled case.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C 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 the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "tst-vtables-common.c"
+
+static int
+do_test (void)
+{
+  return run_tests (true);
+}
+
+#include <support/test-driver.c>