search for: generate_fish_prep_options_pod

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

2016 May 19
0
[PATCH 3/3] fish: generate test-prep.sh with generator
...it 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 generate_fish_test_prep_sh : unit -> unit diff --git a/generator/main.ml b/generator/main.ml index 8d08d83..91ca4d7 100644 --- a/generator/main.ml +++ b/generator/main.ml @@ -124,6 +124,7 @@ Run it from the top source directory using the command output_to "fish/pre...
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
0
[PATCH 1/4] generator: Add interfaces to all modules.
...+val generate_fish_cmds_h : unit -> unit +val generate_fish_commands_pod : unit -> unit +val generate_fish_completion : unit -> unit +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 diff --git a/generator/gobject.mli b/generator/gobject.mli new file mode 100644 index 0000000..50daac5 --- /dev/null +++ b/generator/gobject.mli @@ -0,0 +1,29 @@ +(* libguestfs + * Copyright (C) 2009-2016 Red Hat Inc. + * + * This program is free software; you can redistribute it...
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.