-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from openmainframeproject/211-support-for-sho…
…wing-all-tests-in-curent-workspace-and-picking-which-tests-to-run-in-vs-code-extension Extension Config can now take absolute path
- Loading branch information
Showing
10 changed files
with
55 additions
and
29 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 9 additions & 8 deletions
17
vs-code-extension/Cobol-check/scripts/windows_gnucobol_run_tests.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
@echo off | ||
:: Windows - compile and execute a test Cobol program | ||
:: | ||
:: Assumptions: | ||
:: | ||
:: GnuCOBOL 2.2 or later is installed and on the path. | ||
:: Its executable or alias or symlink is named "cobc". | ||
|
||
cobc -xj %* && %~n1 | ||
rem Windows - compile and execute a test Cobol program | ||
rem | ||
rem Assumptions: | ||
rem | ||
rem GnuCOBOL 3.+ is installed and on the path. Its executable or alias or symlink is named "cobc". | ||
%~d1 | ||
cd %~p1 | ||
cobc -xj %* | ||
%~n1 |