blob: dbb529d1b1059f1be5fae6e1bac6cd61bbc3d0fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
; A typical MakeCommandLine test will contain an input and an output name value
; pair. The value for input_xx is the input command line and the value for
; output_xx is the expected output command line.
;
; A test that is known to fail can be added as follows. If the passes_xx name
; value pair doesn't exist it defaults to true.
; input_99=yabadaba
; output_99=doo
; passes_99=false
;
; If a value starts and ends with single or double quotation marks then it must
; be enclosed in single or double quotation marks due to GetPrivateProfileString
; discarding the outmost quotation marks. See GetPrivateProfileString on MSDN
; for more information.
; http://msdn.microsoft.com/en-us/library/ms724353.aspx
[MakeCommandLineTests]
input_0=a:\
output_0=a:\
input_1=""a:\""
output_1=a:\"
input_2=""a:\b c""
output_2=""a:\b c""
input_3=""a:\b c\""
output_3=""a:\b c\"""
input_4=""a:\b c\d e""
output_4=""a:\b c\d e""
input_5=""a:\b c\d e\""
output_5=""a:\b c\d e\"""
input_6=""a:\\""
output_6=a:\
input_7="a:\" "b:\c d"
output_7=a:\" "b:\c d"
input_8="a "b:\" "c:\d e""
output_8="a "b:\" c:\d" e"
input_9="abc" d e
output_9=abc d e
input_10="a b c" d e
output_10="a b c" d e
input_11=a\\\b d"e f"g h
output_11=a\\\b "de fg" h
input_12=a b
output_12=a b
input_13=""a b""
output_13=""a b""
input_14=a\\\"b c d
output_14=a\\\"b c d
input_15=a\\\"b c"
output_15=a\\\"b c
input_16=""a\\\b c"
output_16=""a\\\b c""
input_17=\"a
output_17=\"a
input_18=\\"a
output_18=\a
input_19=\\"\\\\"a
output_19=\\\a
input_20=\\"\\\\\"a
output_20=\\\\\\\"a
input_21="a\\\"b c\" d e
output_21=""a\\\"b c\" d e""
input_22=a\\\\\"b c" d e"
output_22=a\\\\\"b "c d e"
input_23=a:\b c\アルファ オメガ\d
output_23=a:\b c\アルファ オメガ\d
input_24=a:\b "c\アルファ オメガ\d"
output_24=a:\b "c\アルファ オメガ\d"
input_25=アルファ オメガ
output_25=アルファ オメガ
|