Skip to content

Commit

Permalink
. e Simplified bash script by using relative paths
Browse files Browse the repository at this point in the history
Left current directory as $HERE - might be useful...
  • Loading branch information
stagg54 committed Oct 17, 2023
1 parent cad7259 commit 440e6a7
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

set -euo pipefail

CURRENT_DIRECTORY=$(cygpath -w $(pwd))
echo "CURRENT_DIRECTORY = $CURRENT_DIRECTORY"
HERE=$(cygpath -w $(pwd))

CARAYA="C:\Program Files\National Instruments\LabVIEW 2020\vi.lib\addons\_JKI Toolkits\Caraya\CarayaCLIExecutionEngine.vi"
echo "CARAYA = $CARAYA"

g-cli vipc -- -v "20.0 (64-bit)" -t 1200 "$CURRENT_DIRECTORY\Approvals Starter Project.vipc"
g-cli "$CARAYA" -- -s "$CURRENT_DIRECTORY" -x "$CURRENT_DIRECTORY\UnitTestReport.xml"
g-cli vipc -- -v "20.0 (64-bit)" -t 1200 "Approvals Starter Project.vipc"
g-cli caraya -- -s . -x "UnitTestReport.xml"

0 comments on commit 440e6a7

Please sign in to comment.