diff options
author | Richard Jones <rjones@redhat.com> | 2010-05-07 00:13:31 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-07 15:27:28 +0100 |
commit | a84f1360499309e2d2ecb661adc6917539b5eef4 (patch) | |
tree | 1a891960d8e4f2fb2659b10da43b75feeaef6fde /src | |
parent | 26991ebb8181b57f4c8454f2862c938d7c5d012d (diff) | |
download | libguestfs-a84f1360499309e2d2ecb661adc6917539b5eef4.tar.gz libguestfs-a84f1360499309e2d2ecb661adc6917539b5eef4.tar.xz libguestfs-a84f1360499309e2d2ecb661adc6917539b5eef4.zip |
daemon: Fix wc* commands to work on absolute symbolic links (RHBZ#579608).
Diffstat (limited to 'src')
-rwxr-xr-x | src/generator.ml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/generator.ml b/src/generator.ml index a5a7ddcd..1e6d3c0d 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -2838,7 +2838,10 @@ See also: L<mkdtemp(3)>"); ("wc_l", (RInt "lines", [Pathname "path"]), 118, [], [InitISOFS, Always, TestOutputInt ( - [["wc_l"; "/10klines"]], 10000)], + [["wc_l"; "/10klines"]], 10000); + (* Test for RHBZ#579608, absolute symbolic links. *) + InitISOFS, Always, TestOutputInt ( + [["wc_l"; "/abssymlink"]], 10000)], "count lines in a file", "\ This command counts the lines in a file, using the |