search for: 0b57b19d7

Displaying 8 results from an estimated 8 matches for "0b57b19d7".

2019 Jun 27
2
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...ation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. > + */ > + > +extern crate guestfs; > + > +#[test] > +fn load() { > + // nop > +} > diff --git a/rust/tests/020_create.rs b/rust/tests/020_create.rs > new file mode 100644 > index 000000000..0b57b19d7 > --- /dev/null > +++ b/rust/tests/020_create.rs > @@ -0,0 +1,24 @@ > +/* libguestfs Python bindings > + Copyright (C) 2009-2019 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...
2019 Jun 27
1
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...> > > +extern crate guestfs; > > > + > > > +#[test] > > > +fn load() { > > > + // nop > > > +} > > > diff --git a/rust/tests/020_create.rs b/rust/tests/020_create.rs > > > new file mode 100644 > > > index 000000000..0b57b19d7 > > > --- /dev/null > > > +++ b/rust/tests/020_create.rs > > > @@ -0,0 +1,24 @@ > > > +/* libguestfs Python bindings > > > + Copyright (C) 2009-2019 Red Hat Inc. > > > + > > > + This program is free software; you can redistribute it and...
2019 Jun 27
0
[PATCH 3/9] Rust bindings: Add 4 bindings tests
...his program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +extern crate guestfs; + +#[test] +fn load() { + // nop +} diff --git a/rust/tests/020_create.rs b/rust/tests/020_create.rs new file mode 100644 index 000000000..0b57b19d7 --- /dev/null +++ b/rust/tests/020_create.rs @@ -0,0 +1,24 @@ +/* libguestfs Python bindings + Copyright (C) 2009-2019 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 Fou...
2019 Jun 27
0
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...; 02110-1301 USA. > > + */ > > + > > +extern crate guestfs; > > + > > +#[test] > > +fn load() { > > + // nop > > +} > > diff --git a/rust/tests/020_create.rs b/rust/tests/020_create.rs > > new file mode 100644 > > index 000000000..0b57b19d7 > > --- /dev/null > > +++ b/rust/tests/020_create.rs > > @@ -0,0 +1,24 @@ > > +/* libguestfs Python bindings > > + Copyright (C) 2009-2019 Red Hat Inc. > > + > > + This program is free software; you can redistribute it and/or modify > > + it under the...
2019 Jun 27
4
Re: [PATCH 9/9] Rust bindings: Complete bindings
Patch 9 is a kind of dumping ground of all kinds of stuff. It may be better to spend some time with git rebase -i trying to work this into more coherent patches. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live
2019 Jun 27
16
[PATCH 1/9] Rust bindings: Add Rust bindings
From: Hiroyuki_Katsura <hiroyuki.katsura.0513@gmail.com> --- Makefile.am | 4 ++++ configure.ac | 3 +++ generator/Makefile.am | 3 +++ generator/bindtests.ml | 3 +++ generator/bindtests.mli | 1 + generator/main.ml | 5 +++++ generator/rust.ml | 34 ++++++++++++++++++++++++++++++++++ generator/rust.mli | 19 +++++++++++++++++++
2019 Jul 02
16
[PATCH] Add Rust bindings
I fixed the patch I submitted before based on comments, and there are some commits which are merged or divided. So, I will re-send all the patches. Regards, Hiroyuki Katsura
2019 Jun 27
0
[PATCH 9/9] Rust bindings: Complete bindings
...ld 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. +*/ extern crate guestfs; diff --git a/rust/tests/020_create.rs b/rust/tests/020_create.rs index 0b57b19d7..017dbbac0 100644 --- a/rust/tests/020_create.rs +++ b/rust/tests/020_create.rs @@ -1,20 +1,20 @@ -/* libguestfs Python bindings - Copyright (C) 2009-2019 Red Hat Inc. +/* libguestfs Rust bindings +Copyright (C) 2009-2019 Red Hat Inc. - This program is free software; you can redistribute it and/o...