search for: c654bf6

Displaying 4 results from an estimated 4 matches for "c654bf6".

2016 May 19
0
[PATCH 3/3] fish: generate test-prep.sh with generator
...g_count :: params + ) else params in + let params = List.rev params in + pr " -N prep%d.img=%s \\\n" (i + 1) (String.concat ":" params) + ) prepopts; + + pr " exit + +rm %s +" all_disks diff --git a/generator/fish.mli b/generator/fish.mli index c654bf6..bb4376a 100644 --- a/generator/fish.mli +++ b/generator/fish.mli @@ -26,3 +26,4 @@ val generate_fish_event_names : unit -> unit val generate_fish_prep_options_c : unit -> unit val generate_fish_prep_options_h : unit -> unit val generate_fish_prep_options_pod : unit -> unit +val gene...
2016 Feb 23
0
[PATCH 1/4] generator: Add interfaces to all modules.
...long with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + *) + +val events : (string * int) list +val all_events_bitmask : int diff --git a/generator/fish.mli b/generator/fish.mli new file mode 100644 index 0000000..c654bf6 --- /dev/null +++ b/generator/fish.mli @@ -0,0 +1,28 @@ +(* libguestfs + * Copyright (C) 2009-2016 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; eit...
2016 May 19
6
[PATCH 0/3] misc tests-only changes
Hi, small series with small improvements to the tests. Pino Toscano (3): tests: specify the image format when possible tests: remove remaining relative paths to binaries fish: generate test-prep.sh with generator .gitignore | 1 + align/test-virt-alignment-scan.sh | 2 +- cat/Makefile.am | 2 +- cat/test-virt-cat.sh
2016 Feb 23
7
[PATCH 0/4] Various tweaks to the generator.
Use interfaces files (*.mli files) instead of exporting all symbols randomly. Change the 'file is generated' warnings at the top of generated files so they accurately describe which source file generates each output file. Rich.