search for: testlabel

Displaying 11 results from an estimated 11 matches for "testlabel".

Did you mean: test_label
2013 Aug 16
2
[PATCH] xfstests: update filters and output of btrfs/006
...S_UTIL_PROG device stats $LAST_POOL_DEV | sed -e "s,$LAST_POOL_DEV,LAST_POOL_DEV,g" | _filter_spaces # success, all done status=0 diff --git a/tests/btrfs/006.out b/tests/btrfs/006.out index ab33b7e..413a5a8 100644 --- a/tests/btrfs/006.out +++ b/tests/btrfs/006.out @@ -4,38 +4,38 @@ TestLabel.006 == Mount. == Show filesystem by label -Label: ''TestLabel.006'' uuid: <UUID> +Label: ''TestLabel.006'' uuid: <UUID> Total devices <EXACTNUM> FS bytes used <SIZE> - devid <DEVID> size <SIZE> used <SIZE> path SCRAT...
2006 Mar 02
0
Combining plaintext and plotmath expressions
...on ("*mu*"m)" "Rotation ("*degree*")" "Mean ("*mu*"m)" "Vb1-Vb2 "*(Omega) H[2]O "Used" Max P # Defects I read in the strings, and use one at a time in the variable "parmlabel". I have another variable called "testlabel" which I also need to concatenate, and can be things like "distance" or "E-test". Sometimes I also concatenate another variable "oplabel" when the variable "op" is not zero-length. I have kludged a solution using this function: expr.label<-function...
2015 Jan 13
3
[PATCH] mkfs: add 'label' optional argument
...["ntfsfix"; "/dev/sda1"; "false"]]), [] ]; shortdesc = "fix common errors and force Windows to check NTFS"; @@ -9820,7 +9824,7 @@ any existing contents of this device." }; [["set_label"; "/dev/sda1"; "testlabel"]; ["vfs_label"; "/dev/sda1"]], "testlabel"), []; InitPartition, IfAvailable "ntfs3g", TestResultString ( - [["mkfs"; "ntfs"; "/dev/sda1"; ""; "NOARG"; ""; ""];...
2012 Feb 27
4
[PATCH 0/4] Add various ntfs* tools and unify label setting.
This miscellaneous patch adds bindings for: - ntfsfix - ntfsclone - ntfslabel and unifies filesystem label setting through a single API 'set-label' which replaces 'set-e2label' and is also able to set labels on NTFS using the ntfslabel program. 'ntfsfix' has been added as a possible way to fix RHBZ#797760. However I have not found a way to fully fix this bug. See
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...= RErr, [Device "device"; String "label"], []; - deprecated_by = Some "set_label"; + deprecated_by = Replaced_by "set_label"; tests = [ InitBasicFS, Always, TestResultString ( [["set_e2label"; "/dev/sda1"; "testlabel"]; @@ -230,7 +230,7 @@ to return the existing label on a filesystem." }; { defaults with name = "get_e2label"; added = (1, 0, 15); style = RString "label", [Device "device"], []; - deprecated_by = Some "vfs_label"; + deprecated_by...
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain optional arguments, while preserving source and binary backwards compatibility. The problem is that we cannot add an optional argument to an existing function. For example, we might want to add flags to the 'lvresize' API which currently has no optional arguments.
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...[Mountable "mountable"; String "label"], []; + style = RErr, [String (Mountable, "mountable"); String (PlainString, "label")], []; tests = [ InitBasicFS, Always, TestResultString ( [["set_label"; "/dev/sda1"; "testlabel"]; @@ -7055,7 +7055,7 @@ To read the label on a filesystem, call C<guestfs_vfs_label>." }; { defaults with name = "zero_free_space"; added = (1, 17, 18); - style = RErr, [Pathname "directory"], []; + style = RErr, [String (Pathname, "director...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.