Skip to content

Commit 65df006

Browse files
committed
Force CTEST_PARALLEL_LEVEL=1 because this branch doesn't support parallel tests
Signed-off-by: Larry Gritz <[email protected]>
1 parent 8a03727 commit 65df006

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ test: cmake
336336
DYLD_LIBRARY_PATH=${INSTALL_PREFIX}/lib:${DYLD_LIBRARY_PATH} \
337337
OIIO_LIBRARY_PATH=${INSTALL_PREFIX}/lib:${OIIO_LIBRARY_PATH} \
338338
PYTHONPATH=${working_dir}/${build_dir}/src/python:${PYTHONPATH} \
339+
CTEST_PARALLEL_LEVEL=1 \
339340
ctest -E broken ${TEST_FLAGS} ;\
340341
)
341342
@ ( if [ "${CODECOV}" == "1" ] ; then \
@@ -344,6 +345,8 @@ test: cmake
344345
lcov --remove cov.info "/usr*" -o cov.info ; \
345346
genhtml -o ./cov -t "OSL test coverage" --num-spaces 4 cov.info ; \
346347
fi )
348+
# Note: we force CTEST_PARALLEL_LEVEL=1 because this version of OSL does not
349+
# have its testsuite set up to allow parallel execution f tests.
347350

348351
# 'make clean' clears out the build directory for this platform
349352
clean:

0 commit comments

Comments
 (0)