Re: [eigen] unable to run cdash testsuite |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
Hauke Heibel schrieb:
In order to be able to fix it, could you please attach your script?
- Hauke
Hauke, thank you for the efforts. Sorry for my the big delay.
If I remember correctly:
My fault was to ignore "testsuite.cmake".
and Line #11 in run_ctest solved the issue.
kind regards
Frank
@Echo off
REM get the last version of the source into one directory called "eigen"
pushd c:\develop\cdash\src
hg pull
hg up
popd
rem Show tip log
hg log -r tip src
pause
@Echo off
rem MSVC 2009:
call "c:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
set MSVC_Name=MSVC-2008(9.0.30729.1)
rem MSVC 2010:
rem call "c:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
rem set MSVC_Name=MSVC-2010(10.0.21006.1)
copy src\test\testsuite.cmake .
set COMMON=ctest -VV -S testsuite.cmake,EIGEN_BUILD_STRING=windows-vista-x86_64-%MSVC_Name%,EIGEN_MODE=Experimental
%COMMON%,EIGEN_EXPLICIT_VECTORIZATION=SSE2
rem %COMMON%,EIGEN_EXPLICIT_VECTORIZATION=novec
pause