Skip to content

Commit 85de99a

Browse files
committed
Make "target" directory if it does not exist
1 parent d3c3ca6 commit 85de99a

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

src/test/groovy/com/cloudbees/plugins/flow/AbortTest.groovy

+11-6
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ class AbortTest extends DSLTestCase {
4343
*/
4444
@Test
4545
public void testThatAbortAbortsStartedJobs() {
46-
File f1 = new File("target/${name.getMethodName()}_job1.lock")
46+
File f1 = new File("target", "${name.getMethodName()}_job1.lock")
47+
f1.mkdirs()
4748
f1.createNewFile()
4849

4950
def job1 = createBlockingJob("job1", f1)
@@ -79,9 +80,11 @@ class AbortTest extends DSLTestCase {
7980
*/
8081
@Test
8182
public void testThatAbortAbortsStartedJobs_ParallelBlock() {
82-
File f1 = new File("target/${name.getMethodName()}_job1.lock")
83-
File f2 = new File("target/${name.getMethodName()}_job2.lock")
83+
File f1 = new File("target", "${name.getMethodName()}_job1.lock")
84+
File f2 = new File("target", "${name.getMethodName()}_job2.lock")
85+
f1.mkdirs()
8486
f1.createNewFile()
87+
f2.mkdirs()
8588
f2.createNewFile()
8689

8790
Job job1 = createBlockingJob("job1", f1)
@@ -120,9 +123,11 @@ class AbortTest extends DSLTestCase {
120123
*/
121124
@Test
122125
public void testThatAbortAbortsStartedJobs_IgnoredParallel() {
123-
File f1 = new File("target/${name.getMethodName()}_job1.lock")
124-
File f2 = new File("target/${name.getMethodName()}_job2.lock")
126+
File f1 = new File("target", "${name.getMethodName()}_job1.lock")
127+
File f2 = new File("target", "${name.getMethodName()}_job2.lock")
128+
f1.mkdirs()
125129
f1.createNewFile()
130+
f2.mkdirs()
126131
f2.createNewFile()
127132

128133
Job job1 = createBlockingJob("job1", f1)
@@ -163,7 +168,7 @@ class AbortTest extends DSLTestCase {
163168
*/
164169
@Test
165170
public void testThatAbortAbortsQueuedJobs() {
166-
File f1 = new File("target/${name.getMethodName()}_job1.lock")
171+
File f1 = new File("target", "${name.getMethodName()}_job1.lock")
167172
f1.createNewFile()
168173

169174
Job job1 = createBlockingJob("job1", f1)

src/test/groovy/com/cloudbees/plugins/flow/ConcurrencyTest.groovy

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ class ConcurrencyTest extends DSLTestCase {
4444
Jenkins.instance.numExecutors = 8
4545
Jenkins.instance.reload()
4646

47-
File f1 = new File("target/concjob1.block")
47+
File f1 = new File("target", "concjob1.block")
4848
// this will prevent job1 from running.
49+
f1.mkdirs();
4950
f1.createNewFile();
5051

5152
def concjob1 = createBlockingJob("concjob1", f1)

src/test/java/com/cloudbees/plugin/flow/BlockingBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*/
4646
public class BlockingBuilder extends Builder {
4747

48-
public final static File DEFAULT_FILE = new File("target/build_block.txt");
48+
public final static File DEFAULT_FILE = new File("target", "build_block.txt");
4949

5050
public final File file;
5151

0 commit comments

Comments
 (0)