[cmake-developers] [CMake 0011383]: timeout test property not respected if zero

2010-10-29 Thread Mantis Bug Tracker

The following issue has been SUBMITTED. 
== 
http://cmake.org/Bug/view.php?id=11383 
== 
Reported By:Clinton Stimpson
Assigned To:
== 
Project:CMake
Issue ID:   11383
Category:   CTest
Reproducibility:always
Severity:   minor
Priority:   normal
Status: new
== 
Date Submitted: 2010-10-29 17:44 EDT
Last Modified:  2010-10-29 17:44 EDT
== 
Summary:timeout test property not respected if zero
Description: 

If I put this in my .ctest script
set(CTEST_TEST_TIMEOUT 2)
then in a CMakeLists.txt
set_tests_properties(mytest PROPERTIES TIMEOUT 4)
I get a 4 second timeout as expected.
But if I change that to 
set_tests_properties(mytest PROPERTIES TIMEOUT 0)
to remove the timeout, I get a 2 second timeout instead.

== 

Issue History 
Date ModifiedUsername   FieldChange   
== 
2010-10-29 17:44 Clinton StimpsonNew Issue
==

___
cmake-developers mailing list
cmake-developers@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


[cmake-developers] CMake 2.8.3-rc4 ready for testing!

2010-10-29 Thread David Cole
The CMake 2.8.3 release candidate stream continues!
You can find the source and binaries here:
http://www.cmake.org/files/v2.8/?C=M;O=D

EXCEPT: There are not yet Irix or Sun pre-built binary
installers available for CMake 2.8.3-rc4. There is a
failing (HTML documentation validity checking) test on
some platforms that appears to be unrelated to any CMake
source code changes. That test failure is preventing the
release building process from completing today on those
platforms. If that issue clears up soon, I'll re-do the
installers on those platforms. If not, just use rc3, or
build from source. We'll address this before the final
release.

This will be the LAST release candidate for 2.8.3
unless a major regression is reported. So please
try it on your projects and let us know right away
about any problems.

Since we switched to git, and a new workflow, we're
expecting to do more frequent releases. Because of
that, our release candidate phases will be shorter
than they have been historically. So, if you want to
test this out and ask for a fix, do it soon, or hold your
peace till the next release!

Following is the list of changes in this release.
Since we switched to git, this list is now the
'git log' one line summary written by the named
CMake developers.

Please try this version of CMake on your projects
and report any issues to the list or the bug tracker.

Happy building!

-Dave


Changes in CMake 2.8.3-rc4 (since 2.8.3-rc3)

Bill Hoffman (1):
  When processing DartMeasurements use the tests working directory.

David Cole (2):
  ExternalProject: No svn --username if empty (#11173)
  Avoid problem reading jni.h on Macs.

David Partyka (5):
  Fixed appending PATH to dumpbin tool from growing without bounds.
  Switch to CMAKE_PATH when doing PATH comparisons on Windows.
  Remove unecessary TO_CMAKE_PATH for gp_cmd_dir.
  Append the gp_tool path to the system PATH using native slashes.
  Fixes to GetPrerequisites for cygwin

Eric NOULARD (1):
  CPackDeb Added several optional debian binary package fields

Marcus D. Hanwell (2):
  ENH: Added case for Python 2.7.
  Fixed parallel build for generators with EXTRA.

Changes in CMake 2.8.3-rc3 (since 2.8.3-rc2)

Alex Neundorf (4):
  Remove trailing whitespace
  Add automatic variable CMAKE_CURRENT_LIST_DIR(dir of
CMAKE_CURRENT_LIST_FILE)
  Use absolute path to FindPackageHandleStandardArgs.cmake everywhere
  CodeBlocks Generator: Do not omit files in the project file listing.

Brad King (4):
  VS10: Order .vcxproj dependencies deterministically (#10502)
  Document ENABLE_EXPORTS behavior on Mac (#11295)
  FindHDF5: Fix typo in parallel-IO support check (#11291)
  Xcode: Recognize .hh as C++ (#11307)

Clinton Stimpson (1):
  Find imports dir in Qt 4.7

David Partyka (1):
  Update module to locate newely released MS MPI HPC Pack R2.

Philip Lowman (1):
  Remove superfluous variable Boost_COMPAT_STATIC_RUNTIME.

Rolf Eike Beer (2):
  FindSubversion: Fix for German localized client (#11273)
  FindSubversion: Use C locale to detect version (#11273)

Changes in CMake 2.8.3-rc2 (since 2.8.3-rc1)

Alex Neundorf (5):
  APPEND and not-APPEND mode of feature_summary() were swapped
  Set a default DESCRIPTION if none is given for ALL mode of
feature_summary()
  Close ENDFUNCTION() properly with the same name as FUNCTION()
  Make cmake-gui remember whether the Advanced checkbox was checked or not
  Also store the required version number in the details message.

Ben Boeckel (3):
  Add test that CMake errors with empty libs
  Fix which string is checked for in the test
  XCode generation should fail if lang isn't known

Bill Hoffman (5):
  Fix the name of the variable being tested.
  Fix KWStyle line length issues.
  Add a delay after untar on windows to make external project work
on windows 7
  Add a new line to the end of the generated main.cxx for the hpux compiler.
  Fix for bug #11274, VS10 custom commands that create files in INTDIR fix.

Brad King (12):
  Evaluate OBJECT_DIR rule variable for executables
  ccmake: Fix search with '/'
  MinGW: Support long object file lists
  Document IMPORTED_NO_SONAME target property
  FindMPI: Recoginze -f flags from mpicc (#10771)
  Add module-dir flag for Compaq Visual Fortran (#11248)
  FindPythonInterp: Look for python2.7 interpreter
  VS10: Use $(IntDir) for per-source output directory (#11270)
  Reset platform/compiler info status for each language
  Remove trailing whitespace from Xcode generator source
  VS10: Skip targets with no linker language (#11230)
  VS10: Encode custom command comments for echo (#11283)

Clinton Stimpson (1):
  Fix regression in cross-compile patches with finding Qt libs.