diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-10 15:10:29 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-10 15:10:29 +0100 |
commit | 99f68f259f92eee884c6c7396f61b9c16e2bf354 (patch) | |
tree | 7ae8f097bc7c1317772dd01de185188f20ced45f /tests.c | |
parent | c7f85827cf89a088fa85808202edc75c820fd14e (diff) | |
download | libguestfs-99f68f259f92eee884c6c7396f61b9c16e2bf354.tar.gz libguestfs-99f68f259f92eee884c6c7396f61b9c16e2bf354.tar.xz libguestfs-99f68f259f92eee884c6c7396f61b9c16e2bf354.zip |
Added test framework, no tests implemented yet.
Diffstat (limited to 'tests.c')
-rw-r--r-- | tests.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests.c b/tests.c new file mode 100644 index 00000000..104e6fab --- /dev/null +++ b/tests.c @@ -0,0 +1,31 @@ +/* libguestfs generated file + * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'. + * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST. + * + * Copyright (C) 2009 Red Hat Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +#include "guestfs.h" + +int main (int argc, char *argv[]) +{ + exit (0); +} |