@@ -43,7 +43,8 @@ class AbortTest extends DSLTestCase {
43
43
*/
44
44
@Test
45
45
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()
47
48
f1. createNewFile()
48
49
49
50
def job1 = createBlockingJob(" job1" , f1)
@@ -79,9 +80,11 @@ class AbortTest extends DSLTestCase {
79
80
*/
80
81
@Test
81
82
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()
84
86
f1. createNewFile()
87
+ f2. mkdirs()
85
88
f2. createNewFile()
86
89
87
90
Job job1 = createBlockingJob(" job1" , f1)
@@ -120,9 +123,11 @@ class AbortTest extends DSLTestCase {
120
123
*/
121
124
@Test
122
125
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()
125
129
f1. createNewFile()
130
+ f2. mkdirs()
126
131
f2. createNewFile()
127
132
128
133
Job job1 = createBlockingJob(" job1" , f1)
@@ -163,7 +168,7 @@ class AbortTest extends DSLTestCase {
163
168
*/
164
169
@Test
165
170
public void testThatAbortAbortsQueuedJobs () {
166
- File f1 = new File (" target/ ${ name.getMethodName()} _job1.lock" )
171
+ File f1 = new File (" target" , " ${ name.getMethodName()} _job1.lock" )
167
172
f1. createNewFile()
168
173
169
174
Job job1 = createBlockingJob(" job1" , f1)
0 commit comments