代码搜索:Test
找到约 10,000 项符合「Test」的源代码
代码结果 10,000
www.eeworm.com/read/351829/10604983
quiltrc test.quiltrc
# Define this to generate diffs without timestamps.
QUILT_DIFF_ARGS="--no-timestamps"
QUILT_REFRESH_ARGS="--no-timestamps"
QUILT_MAIL_ARGS="--charset=UTF-8"
QUILT_PATCHES_PREFIX=yes
www.eeworm.com/read/351829/10604988
test fold.test
$ rm -rf d
$ mkdir -p d/patches
$ cd d
$ cat > patches/series
< patch1.diff
$ cat > patches/patch1.diff
< --- q.orig/file1.txt
< +++ q/file1.txt
< @@ -0,0 +1 @@
< +This is file1.txt.
< -
www.eeworm.com/read/351829/10605005
test snapshot.test
$ rm -rf d
$ mkdir -p d/patches
$ cd d
$ quilt new snapshot
> Patch %{P}snapshot is now on top
$ quilt add f.txt
> File f.txt added to patch %{P}snapshot
$ cat > f.txt
< f.txt
$ quilt add
www.eeworm.com/read/351829/10605009
test one.test
This is a minimal test script that runs a few quilt commands
and verifies their output. Much needs to be done; particularly
it sould be possible to run the tests using the built instead
of the install
www.eeworm.com/read/351829/10605014
test dotglob.test
$ rm -rf d
$ mkdir -p d/patches
$ cd d
$ quilt new dotglob.diff
> Patch patches/dotglob.diff is now on top
$ quilt add .foo
> File .foo added to patch patches/dotglob.diff
$ echo dot-foo
www.eeworm.com/read/351829/10605018
test formats.test
$ rm -rf d
$ mkdir -p d/patches
$ cd d
$ cat > test.txt
< 1
< 2
< old
< 4
< 5
$ quilt new test
> Patch %{P}test is now on top
$ quilt add test.txt
> File test.txt added to patch %{P}te
www.eeworm.com/read/351829/10605021
test conflicts.test
This test case creates a patch and then applies that patch to a modified
source file. The source file is modified until the patch doesn't apply
anymore, then the patch is fixed.
$ rm -rf d
$ mkdir
www.eeworm.com/read/351829/10605026
test empty.test
$ rm -rf d
$ mkdir -p d/patches
$ cd d
$ cat > patches/series
< empty1.diff
< empty2.diff
$ touch patches/empty1.diff patches/empty2.diff
$ quilt push -qa
> Applying patch %{P}empty1.diff
www.eeworm.com/read/351829/10605030
test two.test
(To run, type `./run two.test' in this directory.)
$ rm -rf d
$ mkdir -p d/patches d/d
$ cd d
$ quilt new patch1.diff
> Patch %{P}patch1.diff is now on top
$ cd d
$ mkdir dir
$ echo "This is
www.eeworm.com/read/351829/10605032
test perms.test
$ rm -rf d
$ umask 022
$ mkdir -p d/patches
$ cd d
$ echo foo > foo
$ chmod 704 foo
$ ls -l foo | awk '{ print $1,$NF }'
> -rwx---r-- foo
$ quilt new test.diff
> Patch %{P}test.diff is now