- 08 Jan, 2019 1 commit
-
-
Ben Boeckel authored
-
- 18 May, 2018 1 commit
-
-
Kitware Robot authored
Populate a script with `map_<md5>=<sha512>` variable settings and then run the following to convert the content link files: git ls-files -- '*.md5' | while read f; do md5="$(cat "$f")" sha512="$(eval echo \${map_$md5})" rm "$f" echo $sha512 > ${f%.md5}.sha512 done
-
- 04 Jan, 2018 1 commit
-
-
luz.paz authored
Found via `codespell`
-
- 20 Dec, 2017 1 commit
-
-
Ben Boeckel authored
-
- 29 Sep, 2017 1 commit
-
-
Andrew Bauer authored
Adding in functionality to allow inserting vtkNew objects into stl containers of vtkSmartPointer objects as well as comparisons between vtkNew objects and raw pointers. Also removing Get() and GetPointer() calls from vtkNew objects since in most instances we can just pass in the vtkNew<> object instead of having to use the Get() or GetPointer() methods to get the raw pointer.
-
- 26 Jul, 2017 1 commit
-
-
Kitware Robot authored
updating the tests to follow modern standards
-
- 20 Dec, 2016 1 commit
-
-
Bill Lorensen authored
CHECK_ERROR_MSG and CHECK_WARNING_MSG are used to check the content of error and warning messages. Error and warning code is often overlooked during testing. Over the years, these two macros have been refined to increase their utility. Tests that use the macros defined their own interpretations. Three different API's have been used in the macros. This patch replaces the CHECK_ERROR_MSG and CHECK_WARNING_MSG macros with methods for vtkTest::ErrorObserver. All tests that used the CHECK macros in one form or another have been updated to use the CheckErrorMessage and CheckWarningMessage methods.
-
- 23 Sep, 2016 1 commit
-
-
Kitware Robot authored
This commit reindents the code with the following utility: Utilities/Maintenance/vtk-reindent-code.py This utility changes the positions of the braces so that they are no longer indented relative to the code block they reside in. The bash command line used was the following: for d in Charts Common Deprecated Domains Examples Filters GUISupport \ Geovis IO Imaging Infovis Interaction Parallel Rendering \ Testing Views Web Wrapping; do for e in cxx cxx.in txx txx.in hxx hxx.in h h.in c c.in; do find "${d}" -name "*.${e}" -exec \ python Utilities/Maintenance/vtk_reindent_code.py {} + done done
-
- 06 May, 2016 1 commit
-
-
David C. Lonie authored
SafeDownCast performs a series of virtual calls and string comparisons, which is quite slow, especially when used in worker functions. vtkArrayDownCast will switch between SafeDownCast and the more efficient FastDownCast (only available for common vtkAbstractArray subclasses) depending on whether or not FastDownCast is defined for the specific array type.
-
- 08 Mar, 2016 1 commit
-
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- 02 Nov, 2015 2 commits
-
-
Bill Lorensen authored
These tests purposefully trigger errors in order to test that they occur. Use vtkTestErrorObserver to catch these errors rather than printing them as output and causing the test to fail.
-
Bill Lorensen authored
-
- 27 Aug, 2015 1 commit
-
-
T.J. Corona authored
This fix is in response to bug report 0015610. Previously, a named parent node at the end of a Newick tree would cause vtk to crash.
-
- 16 Apr, 2014 1 commit
-
-
Ben Boeckel authored
Change-Id: I10a54acbd076e055d8071414f2fff1ebafe1653d
-
- 06 Mar, 2014 2 commits
-
-
Zack Galbreath authored
Combine PhyloXML reader & writer tests into a single test, and make it more thorough. Change-Id: Ibb32ece7de203269a8508cb06eee91d94706f197
-
Zack Galbreath authored
This class allows us to read a PhyloXML file to generate a vtkTree. This commit also contains corresponding change to vtkPhyloXMLTreeWriter. Change-Id: Idd7a7a997e24f0c751ee51ee8e2e9eb4c9c05c7a
-
- 21 Feb, 2014 1 commit
-
-
Zack Galbreath authored
This commit enables vtkXMLWriter and its subclasses to write their output to a string instead of a file. Change-Id: Idff93039f9536379e3ef9abad6ea4ce18b4f2a60
-
- 14 Feb, 2014 3 commits
-
-
Zack Galbreath authored
This is an improvement over our previous approach of constructing the path to the baseilne file from the testing directory. Change-Id: I2dc0e1354c381ff770475ff2ab7f561b0122e582
-
Zack Galbreath authored
Forgot to add the new Baseline directory for IO/Infovis tests. Hopefully this fixes my failing TestPhyloXMLTreeWriter test. Change-Id: I153e3b280b27888122d2c09d4eddc18362e6382d
-
Zack Galbreath authored
This test now compares its output against a baseline .xml file. Change-Id: I1e612a1375fc933947228cfa03f16a27aab3bca4
-
- 03 Feb, 2014 1 commit
-
-
Zack Galbreath authored
This new class allows us to output vtkTrees in the PhyloXML format. Change-Id: I9d4f0baaea6c0eba4ebb92730777473cf7b67ecf
-
- 29 Jan, 2014 1 commit
-
-
Bill Lorensen authored
Modularized TestDataObjectIO to reduce test dependencies. Change-Id: I86bab1c09847a7adc100a2d2429c5f455e70cda1
-
- 17 Dec, 2013 1 commit
-
-
Bill Lorensen authored
The test and data existed, but the test was not in the CMakeLists.txt file. Change-Id: I0939f5bdde2f497bac756da2ce0e485f4052ce29
-
- 14 Dec, 2013 1 commit
-
-
Bill Lorensen authored
The tests and data existed, but the tests were not in the CMakeLists.txt file. Change-Id: Icdd5b0237771651eec2c259d755a85656003081d
-
- 28 Nov, 2013 1 commit
-
-
Bill Lorensen authored
Valgrind detected a memory leak. Test faied to delete filename. Change-Id: I0b101c01fb694e84f04976781f5e3744819e00e8
-
- 17 Nov, 2013 1 commit
-
-
Xiaoxiao Liu authored
Enable vtkDelimitedTextReader to take a text string as the input. Change-Id: I3d9b8dd0db9dfcd5afd9a6f4bbdc06accd942d94
-
- 08 Nov, 2013 1 commit
-
-
Zack Galbreath authored
This class allows us to output vtkTrees in Newick format. This commit also contains a bug fix for vtkNewickTreeReader. Before this commit, vtkNewickTreeReader created an extra node at the root of the tree. This resulted in the height of the tree and the number of vertices in the tree both being off by one. Change-Id: Icd04b2ea868719289be210b34a3f772335b85a27
-
- 02 Oct, 2013 1 commit
-
-
Xiaoxiao Liu authored
Adding support to accept a string as the input. Corresponding test is updated. Change-Id: Ib28103bdb96989bca4c176b75e09acdf7779cd39
-
- 04 Jun, 2013 1 commit
-
-
Brad King authored
Add to the Testing/Data directory ExternalData content links mirroring the content and layout we use from the VTKData/Data directory. Add a CMake/vtkLegacyData.cmake module, included from CMakeLists.txt and Testing/External/CMakeLists.txt, to call ExternalData_Expand_Arguments for all data directories added from VTKData/Data. This will bulk-fetch all test input data currently used by tests of any module, enabled or not. We can make the DATA{} references more granular later. Add a VTK_TEST_DATA_DIR variable to refer to the directory we tell the ExternalData module to populate the real data files. Replace references to VTK_DATA_ROOT in test command lines (after -D) with references to VTK_TEST_DATA_DIR. Drop the VTK_DATA_ROOT CMake option and stop using the VTKData repository. Remove the TESTING_DATA option from the vtk_add_test_cxx API and remove the VTK_DATA_ROOT option from the vtk_add_test_mpi API since all test input data are now handled through ExternalData and Testing/Data content links. Change-Id: Id02490b76ea2e161b9038188264a4830485039d8
-
- 14 May, 2013 2 commits
-
-
Brad King authored
Tell calls to vtk_add_test_(cxx|python|tcl) explicitly when there is no valid baseline image to avoid passing -V unnecessarily. Change-Id: Ibe5aecdfa076446ddda0b95e814483eb6622af73
-
Brad King authored
Refactor */*/Testing/Cxx/CMakeLists.txt to use the vtk_add_test_cxx function instead of direct add_test calls. Change-Id: I73dee627fa87a399c48b409af046b116fc75a0fd
-
- 13 Feb, 2013 1 commit
-
-
Bill Lorensen authored
The vtkTestingInteractor was trying to run regression tests even if VTK_DATA_ROOT was not defined. Many Testing/Cxx CMakeLists.txt files tried to run tests that required input data, even though VTK_DATA_ROOT was not defined. Subsequent topics will address Tcl and Python tests. Change-Id: Iabf242f9f498ce044948ca1d4a29378b76ceb21d
-
- 23 Oct, 2012 1 commit
-
-
Xiaoxiao Liu authored
vtkMultiNewickTreeReader internally uses vtkNewickTreeReader to read each individual tree from the input multi-tree file, in which trees are saperated by ";". Change-Id: I28f1754262931266345c189e78a260665aa5f8c9
-
- 24 Aug, 2012 3 commits
-
-
Zack Galbreath authored
Change-Id: I44e2895ecd5720f886fd1606118b9e5d2add1bbd
-
Zack Galbreath authored
This allows us to read the .biom ASCII file format for tables. Change-Id: Ic891ab00aa228d9ddb51cfd41fcc4a895653a34e
-
Zack Galbreath authored
This class reads in trees form the common Newick file format. Among other benefits, this class makes it easier to use my new vtkTreeHeatmapItem Change-Id: I89ebb24ac4554bb1506fc9f1cf60a2a5f316230b
-
- 10 Apr, 2012 1 commit
-
-
Brad King authored
Replace all references to ${VTK_BINARY_DIR}/Testing/Temporary with ${VTK_TEST_OUTPUT_DIR} and set the variable accordingly. The latter is shorter and will also be useful to build module tests as an external application that does not have VTK_BINARY_DIR available. Change-Id: I5159077c10dd2eab23365e9ac917bc6cbd806589
-
- 09 Apr, 2012 3 commits
-
-
VTK Developers authored
Exclude ThirdParty, Utilities/MetaIO, and Utilities/KWSys as these are maintained outside VTK. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com>
-
VTK Developers authored
Add module.cmake, CMakeLists.txt, and other build system files. The modular VTK build system is not yet mature. The monolithic build files had a lot of infrastructure. The modular build files reproduce much of the functionality but some features will need to be restored later. Document status and tasks in "TODO-Modularization.txt". Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com> Co-Author: Nikhil Shetty <nikhil.shetty@kitware.com>
-
VTK Developers authored
Move source files from their former monolithic VTK location to their new location in modular VTK without modification. This preserves enough information for "git blame -M" and "git log --follow" to connect modularized VTK files to their original location and history. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com> Co-Author: Nikhil Shetty <nikhil.shetty@kitware.com>
-