missing.test

来自「Rsync 3.0.5 source code」· TEST 代码 · 共 28 行

TEST
28
字号
#! /bin/sh# This program is distributable under the terms of the GNU GPL (see# COPYING).# Test three bugs fixed by my redoing of the missing_below logic.. $srcdir/testsuite/rsync.fnsmakepath "$fromdir/subdir" "$todir"echo data >"$fromdir/subdir/file"echo data >"$todir/other"# Test 1: Too much "not creating new..." output on a dry run$RSYNC -n -r --ignore-non-existing -vv "$fromdir/" "$todir/" | tee "$scratchdir/out"if grep 'not creating new.*subdir/file' "$scratchdir/out" >/dev/null; then	test_fail 'test 1 failed'fi# Test 2: Attempt to make a fuzzy dirlist for a dir not created on a dry run$RSYNC -n -r -R --no-implied-dirs -y "$fromdir/./subdir/file" "$todir/" \	|| test_fail 'test 2 failed'# Test 3: --delete-after pass skipped when last dir is dry-missing$RSYNC -n -r --delete-after -i "$fromdir/" "$todir/" | tee "$scratchdir/out"grep '^\*deleting * other' "$scratchdir/out" >/dev/null \	|| test_fail 'test 3 failed'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?