We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f9686a commit bac76adCopy full SHA for bac76ad
.gitignore
@@ -9,3 +9,4 @@ gdlde/
9
gdlde*.zip
10
.vscode
11
.idea/
12
+Testing/
scripts/build_gdl.sh
@@ -553,11 +553,12 @@ function install_gdl {
553
554
function test_gdl {
555
log "Testing GDL..."
556
- cd ${ROOT_DIR}/build
557
- if [ -f ${GDL_DIR}/CMakeModules/CodeCoverage.cmake ]; then
+ cd "${ROOT_DIR}/build" || exit 1
+ if [ -f "${GDL_DIR}/CMakeModules/CodeCoverage.cmake" ]; then
558
make codecov || exit 1
559
else
560
- CTEST_OUTPUT_ON_FAILURE=1 make test || exit 1
+ # since we do not install anything we need to set the driver path to the directory of the compiles drivers
561
+ CTEST_OUTPUT_ON_FAILURE=1 GDL_DRV_DIR="${ROOT_DIR}/build/src/plplotdriver" make test || exit 1
562
fi
563
}
564
0 commit comments