Skip to content

Commit e150035

Browse files
authored
Merge pull request #426 from common-workflow-language/fix-wc-test
Fix wc test
2 parents f2ea521 + 6acb016 commit e150035

14 files changed

+6
-16
lines changed

v1.0/conformance_test_v1.0.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@
155155
- job: v1.0/wc-job.json
156156
output:
157157
output:
158+
checksum: sha1$3596ea087bfdaf52380eae441077572ed289d657
158159
class: File
159-
checksum: sha1$631bfbac524e2d04cdcc5ec33ade827fc10b06ae
160160
location: output
161-
size: 15
161+
size: 3
162162
tool: v1.0/wc-tool.cwl
163163
doc: Test command execution in with stdin and stdout redirection
164164

v1.0/v1.0/count-lines10-wf.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ steps:
1313
out: [count_output]
1414
run:
1515
class: Workflow
16-
id: subwf
1716
inputs:
1817
file1: File
1918
outputs:

v1.0/v1.0/count-lines2-wf.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ steps:
3939
out: [parseInt_output]
4040
run:
4141
class: ExpressionTool
42-
id: subtool
4342
inputs:
4443
parseInt_file1:
4544
type: File

v1.0/v1.0/scatter-valuefrom-wf1.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ steps:
3535
scatter: echo_in
3636
run:
3737
class: CommandLineTool
38-
id: subtool
3938
inputs:
4039
first:
4140
type: string

v1.0/v1.0/scatter-valuefrom-wf5.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ steps:
3535
scatter: echo_in
3636
run:
3737
class: CommandLineTool
38-
id: subtool
3938
inputs:
4039
first:
4140
type: string

v1.0/v1.0/scatter-wf1.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ steps:
1919
scatter: echo_in
2020
run:
2121
class: CommandLineTool
22-
id: subtool
2322
inputs:
2423
echo_in:
2524
type: string

v1.0/v1.0/wc-tool.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ outputs:
1111
type: File
1212
outputBinding: { glob: output }
1313

14-
baseCommand: [wc]
14+
baseCommand: [wc, -l]
1515

1616
stdin: $(inputs.file1.path)
1717
stdout: output

v1.1.0-dev1/conformance_test_v1.1.0-dev1.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@
166166
- job: v1.1.0-dev1/wc-job.json
167167
output:
168168
output:
169+
checksum: sha1$3596ea087bfdaf52380eae441077572ed289d657
169170
class: File
170-
checksum: sha1$631bfbac524e2d04cdcc5ec33ade827fc10b06ae
171171
location: output
172-
size: 15
172+
size: 3
173173
tool: v1.1.0-dev1/wc-tool.cwl
174174
doc: Test command execution in with stdin and stdout redirection
175175

v1.1.0-dev1/v1.1.0-dev1/count-lines10-wf.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ steps:
1313
out: [count_output]
1414
run:
1515
class: Workflow
16-
id: subwf
1716
inputs:
1817
file1: File
1918
outputs:

v1.1.0-dev1/v1.1.0-dev1/count-lines2-wf.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ steps:
3939
out: [parseInt_output]
4040
run:
4141
class: ExpressionTool
42-
id: subtool
4342
inputs:
4443
parseInt_file1:
4544
type: File

v1.1.0-dev1/v1.1.0-dev1/scatter-valuefrom-wf1.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ steps:
3535
scatter: echo_in
3636
run:
3737
class: CommandLineTool
38-
id: subtool
3938
inputs:
4039
first:
4140
type: string

v1.1.0-dev1/v1.1.0-dev1/scatter-valuefrom-wf5.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ steps:
3535
scatter: echo_in
3636
run:
3737
class: CommandLineTool
38-
id: subtool
3938
inputs:
4039
first:
4140
type: string

v1.1.0-dev1/v1.1.0-dev1/scatter-wf1.cwl

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ steps:
1919
scatter: echo_in
2020
run:
2121
class: CommandLineTool
22-
id: subtool
2322
inputs:
2423
echo_in:
2524
type: string

v1.1.0-dev1/v1.1.0-dev1/wc-tool.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ outputs:
1111
type: File
1212
outputBinding: { glob: output }
1313

14-
baseCommand: [wc]
14+
baseCommand: [wc, -l]
1515

1616
stdin: $(inputs.file1.path)
1717
stdout: output

0 commit comments

Comments
 (0)