File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 9
9
gdlde * .zip
10
10
.vscode
11
11
.idea /
12
+ Testing /
Original file line number Diff line number Diff line change @@ -558,11 +558,12 @@ function install_gdl {
558
558
559
559
function test_gdl {
560
560
log " Testing GDL..."
561
- cd ${ROOT_DIR} /build
562
- if [ -f ${GDL_DIR} /CMakeModules/CodeCoverage.cmake ]; then
561
+ cd " ${ROOT_DIR} /build" || exit 1
562
+ if [ -f " ${GDL_DIR} /CMakeModules/CodeCoverage.cmake" ]; then
563
563
make codecov || exit 1
564
564
else
565
- CTEST_OUTPUT_ON_FAILURE=1 make test || exit 1
565
+ # since we do not install anything we need to set the driver path to the directory of the compiles drivers
566
+ CTEST_OUTPUT_ON_FAILURE=1 GDL_DRV_DIR=" ${ROOT_DIR} /build/src/plplotdriver" make test || exit 1
566
567
fi
567
568
}
568
569
You can’t perform that action at this time.
0 commit comments