Skip to content

Commit 4916f51

Browse files
committed
tests up
1 parent d57e5c9 commit 4916f51

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

it/server/src/test/java/com/walmartlabs/concord/it/server/DockerIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public void testPullRetry() throws Exception {
153153
assertLogAtLeast(".*Error pulling the image.*", 2, ab);
154154
}
155155

156-
@Test(timeout = DEFAULT_TEST_TIMEOUT)
156+
@Test
157157
public void testDockerLogCaptureLimit() throws Exception {
158158
byte[] payload = archive(DockerIT.class.getResource("dockerCaptureLimit").toURI());
159159

@@ -171,7 +171,7 @@ public void testDockerLogCaptureLimit() throws Exception {
171171
assertLog(".*stderr loop 10000.*", ab);
172172
}
173173

174-
@Test(timeout = DEFAULT_TEST_TIMEOUT)
174+
@Test
175175
public void testDockerLogCaptureLimitV2() throws Exception {
176176
byte[] payload = archive(DockerIT.class.getResource("dockerCaptureLimitV2").toURI());
177177

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
flows:
2-
main:
2+
default:
33
- task: docker
44
in:
55
image: ${image}
66
debug: true
77
forcePull: false
88
stderr: myErrout
99
cmd: |
10-
for i in {1..10000}; do
10+
for i in {1..10000}
11+
do
1112
echo "stdout loop $i"
1213
>&2 echo "stderr loop $i"
1314
done
14-
15-
variables:
16-
entryPoint: main

it/server/src/test/resources/com/walmartlabs/concord/it/server/dockerCaptureLimitV2/concord.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ flows:
77
forcePull: false
88
stderr: myErrout
99
cmd: |
10-
for i in {1..10000}; do
10+
for i in {1..10000}
11+
do
1112
echo "stdout loop $i"
1213
>&2 echo "stderr loop $i"
1314
done

0 commit comments

Comments
 (0)