Lines Matching refs:rem

2 rem Copyright 2008 Google Inc.
3 rem Author: Lincoln Smith
4 rem
5 rem Licensed under the Apache License, Version 2.0 (the "License");
6 rem you may not use this file except in compliance with the License.
7 rem You may obtain a copy of the License at
8 rem
9 rem http:#www.apache.org/licenses/LICENSE-2.0
10 rem
11 rem Unless required by applicable law or agreed to in writing, software
12 rem distributed under the License is distributed on an "AS IS" BASIS,
13 rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 rem See the License for the specific language governing permissions and
15 rem limitations under the License.
16 rem
17 rem This script tests the correctness of the vcdiff.exe command-line
18 rem executable. It is the Windows equivalent of the src/vcdiff_test.sh
19 rem shell script for Unix systems, though some of the tests from that
20 rem script are not included here.
21 rem
22 rem If you add a new test here, please add the same test to
23 rem src/vcdiff_test.sh.
25 rem The script should be passed one argument which is the location of the
26 rem vcdiff.exe executable.
32 rem These options are only needed for the encoder;
33 rem the decoder will recognize the interleaved and checksum formats
34 rem without needing to specify any options.
44 rem vcdiff with no arguments shows usage information & error result
50 rem vcdiff with three arguments but without "encode" or "decode"
51 rem shows usage information & error result
58 rem vcdiff with all three arguments. Verify that output file matches target file
78 rem open-vcdiff Issue 7
79 rem (http://code.google.com/p/open-vcdiff/issues/detail?id=7)
80 rem vcdiff using stdin/stdout. Verify that output file matches target file
100 rem vcdiff with mixed stdin/stdout.
137 rem Don't remove %DELTA_FILE%; use it for the next test
139 rem If using the wrong dictionary, and dictionary is smaller than the original
140 rem dictionary, vcdiff will spot the mistake and return an error. (It can't
141 rem detect the case where the wrong dictionary is larger than the right one.)
152 rem "vcdiff test" with all three arguments.
163 rem Dictionary file not found.
172 rem Target file not found.
181 rem Delta file not found.
189 rem Test using -stats flag
211 rem open-vcdiff Issue 6
212 rem (http://code.google.com/p/open-vcdiff/issues/detail?id=6)
213 rem Using empty file as dictionary should work, but (because dictionary is empty)
214 rem it will not produce a small delta file.
226 rem Decode using something that isn't a delta file
267 rem Using -buffersize=1 should still work.
280 rem Using -buffersize=1 with stdin/stdout means that vcdiff
281 rem will create a separate target window for each byte read.
304 rem Using -buffersize=0 should fail.
316 rem Using -buffersize=128M (larger than default maximum) should still work.
351 rem Remove -interleaved and -checksum options
367 rem -target_matches option
375 rem The decode operation ignores the -target_matches option.
411 rem open-vcdiff Issue 8
412 rem (http://code.google.com/p/open-vcdiff/issues/detail?id=8)
413 rem A malicious encoding that tries to produce a 4GB target file made up of 64
414 rem windows, each window having a size of 64MB.
437 rem Decoding a small target with the -max_target_file_size option should succeed.
447 rem Decoding a small target with -max_target_window_size option should succeed.