blob: cfe69b76afb46df9d3da046d734d0a9d6a077fb3 [file] [log] [blame]
Denis Vlasenkocc2965f2008-03-25 14:15:39 +00001#!/bin/sh
2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details.
4
5. testing.sh
6
7# testing "test name" "options" "expected result" "file input" "stdin"
8
9testing "patch with old_file == new_file" \
10 "patch; echo $?; cat input" \
11"\
12patching file input
130
14qwe
15asd
16zxc
17" \
18 "qwe\nzxc\n" \
19"\
20--- input Jan 01 01:01:01 2000
21+++ input Jan 01 01:01:01 2000
22@@ -1,2 +1,3 @@
23 qwe
24+asd
25 zxc
26" \
27
28testing "patch with nonexistent old_file" \
Denis Vlasenko08ec67b2008-03-26 13:32:30 +000029 "patch; echo $?; cat input" \
Denis Vlasenkocc2965f2008-03-25 14:15:39 +000030"\
31patching file input
320
33qwe
34asd
35zxc
36" \
37 "qwe\nzxc\n" \
38"\
39--- input.doesnt_exist Jan 01 01:01:01 2000
40+++ input Jan 01 01:01:01 2000
41@@ -1,2 +1,3 @@
42 qwe
43+asd
44 zxc
45" \
46
Denis Vlasenko08ec67b2008-03-26 13:32:30 +000047testing "patch -R with nonexistent old_file" \
48 "patch -R; echo $?; cat input" \
49"\
50patching file input
510
52qwe
53zxc
54" \
55 "qwe\nasd\nzxc\n" \
56"\
57--- input.doesnt_exist Jan 01 01:01:01 2000
58+++ input Jan 01 01:01:01 2000
59@@ -1,2 +1,3 @@
60 qwe
61+asd
62 zxc
63" \
64
Denis Vlasenkocc2965f2008-03-25 14:15:39 +000065exit $FAILCOUNT