diff --git a/appveyor.yml b/appveyor.yml index 8c20420c..a09f03f7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,7 +22,7 @@ build_script: cmake .. -T v120_xp -Dembree_DIR="c:/embree-2.14.0.win32.windows/lib/cmake/embree-2.14.0" } - msbuild check.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" + msbuild testlight.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" msbuild PACKAGE.vcxproj /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" diff --git a/build-linux-64.sh b/build-linux-64.sh index 1c1f2c81..b5122bc8 100755 --- a/build-linux-64.sh +++ b/build-linux-64.sh @@ -13,11 +13,11 @@ wget https://github.com/embree/embree/releases/download/v2.14.0/embree-2.14.0.x8 tar xf embree.tgz cmake .. -DCMAKE_BUILD_TYPE=Release -Dembree_DIR="$(pwd)/embree-2.14.0.x86_64.linux/lib/cmake/embree-2.14.0" make -j8 VERBOSE=1 -make -j8 VERBOSE=1 check +make -j8 VERBOSE=1 testlight cpack # run tests -./testlight/testlight || exit 1 +./light/testlight || exit 1 # check rpath readelf -d ./light/light diff --git a/build-osx.sh b/build-osx.sh index 3271f8d7..28cd169a 100755 --- a/build-osx.sh +++ b/build-osx.sh @@ -18,8 +18,8 @@ tar xf "$EMBREE_TGZ_NAME" EMBREE_CMAKE_DIR="$(pwd)/$EMBREE_DIR_NAME/lib/cmake/$EMBREE_WITH_VERSION" cmake .. -DCMAKE_BUILD_TYPE=Release -Dembree_DIR="$EMBREE_CMAKE_DIR" make -j8 -make -j8 check +make -j8 testlight cpack # run tests -./testlight/testlight || exit 1 +./light/testlight || exit 1