This repository was archived by the owner on Aug 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
if not exist ..\..\PSharpBatchTesting\Binaries\PSharpBatchTester.exe (
3
3
echo ERROR: Can't find PSharpBatchTester.exe
4
- exit
4
+ goto DONE
5
5
)
6
6
if not exist .\PSharpBatch.config (
7
7
echo ERROR: Can't find PSharpBatch.config
8
- exit
8
+ goto DONE
9
9
)
10
10
if not exist .\PSharpBatchAuth.config (
11
11
echo ERROR: Can't find PSharpBatchAuth.config
12
- exit
12
+ goto DONE
13
13
)
14
14
..\..\PSharpBatchTesting\Binaries\PSharpBatchTester.exe /config:.\PSharpBatch.config /auth:.\PSharpBatchAuth.config
15
15
@@ -41,3 +41,5 @@ for /D %%s in (.\*) do (
41
41
echo !Bmk_%%s ! !Bug_%%s ! !Time_%%s ! >> .\PSharpSafetyResults_Cloud.txt
42
42
cd .\Output
43
43
)
44
+
45
+ :DONE
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
if not exist ..\..\PSharpBatchTesting\Binaries\PSharpBatchTester.exe (
3
3
echo ERROR: Can't find PSharpBatchTester.exe
4
- exit
4
+ goto DONE
5
5
)
6
6
if not exist .\PSharpBatch.config (
7
7
echo ERROR: Can't find .\PSharpBatch.config
8
- exit
8
+ goto DONE
9
9
)
10
10
..\..\PSharpBatchTesting\Binaries\PSharpBatchTester.exe /config:.\PSharpBatch.config /local
11
11
@@ -39,3 +39,5 @@ for /D %%s in (.\*) do (
39
39
)
40
40
41
41
:: for /f "tokens=3" %%i in ("!mystr3_%%s!") do set Name_%%s=%%i
42
+
43
+ :DONE
You can’t perform that action at this time.
0 commit comments