Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-18Move tests into tests/ top-level dirCampbell Barton
2014-03-27CTest: disable bl_run_operators.py, fun for finding crashes, takes a long timeCampbell Barton
2014-02-03OSX: tentative set back TEST_BLENDER_EXE to Debug hardcoded for xcode case,Jens Verwiebe
did not found a way yet to use Configuration or run CTEST out of xcode
2014-02-03Fix EXECUTABLE_OUTPUT_PATH binpath for OSX makefiles ( no CMAKE_BUILD_TYPE ↵Jens Verwiebe
dir used here )
2014-02-03Code cleanup: white space and cmake was broken on all platformsCampbell Barton
2014-02-03Assure test works in all OSX buildenvironments/build-typesJens Verwiebe
2014-02-02Added bevel regression test to tests.Howard Trickey
Goes with companion files bevel_regression.blend and mesh_ops_test.py just added to svn lib/tests/modeling. Also changed the blender executable path for Apple case: needed either 'Debug' or 'Release' in the path. I chose 'Debug', because not sure how to add otherwise. At any rate, what was currently there didn't work at all.
2013-02-26add ctest for keyconfig_utils to check for missing items.Campbell Barton
2012-11-03code cleanup: cmake - add missing headers, remove directories from source ↵Campbell Barton
listing. also remove logImageLib.c - empty file.
2012-10-29style cleanup: also quiet harmless compiler warning.Campbell Barton
2012-05-27code cleanup: remove mode comments, these were applied very un-evenly ↵Campbell Barton
across a few files.
2011-12-20unit test for mathutils python module from Andrew Hale, runs in CTest tooCampbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-20pass -noaudio when running blender for various utilities - doc-gen and tests.Campbell Barton
2011-10-10add 3 PLY and STL export tests.Campbell Barton
2011-08-08- update X3D and FBX testing checksumsCampbell Barton
- building with GHOST/SDL now adds the PREFIX - image.external_edit operator errors out if the filepath isnt set (was annoying and loaded gimp while running tests)
2011-07-25fix [#28075] After the correction of No.38528 is applied, the following ↵Campbell Barton
phenomenon has been generated. own fault in recent addition of bpy.path.basename() not supporting byte paths.
2011-07-01update checksums for x3d testsCampbell Barton
2011-06-09update for tests, error out when duplicate modules are found, all ctest ↵Campbell Barton
tests pass again.
2011-06-07update ctest md5sums for import/export to match changes to the scripts, also ↵Campbell Barton
some minor formatting change for bpy_props.c
2011-04-15fix [#26906] Panorama Button (Camera Data Properties)Campbell Barton
- render check for ortho/panorama combination wasn't working since the flags were not initialized at the time of checking. - disable panorama button in ortho mode.
2011-04-06fix [#26801] Undoing Animation modifiers undoes 2 steps.Campbell Barton
also found grease pencil layer operators were not flagged to use undo.
2011-04-06update test checksums (change in normals caused this). also make all imports ↵Campbell Barton
write blend files so its easy to check what the imports look like.
2011-03-26- fix for editfont using an enum func on boolean property.Campbell Barton
- updated FBX export test hash.
2011-03-22Added CTest to run most operators in background mode under various ↵Campbell Barton
conditions to see if any crash. used this to find quite a many errors already.
2011-03-192 tests for ctest.Campbell Barton
- script_load_addons: loads and onloads all addons, error if any cant be enabled or disabled. - script_load_modules: loads all blenders modules, error if any modules raise an exception or if any modules in the scripts dir are not tested (except for presets and templates). These are useful because lazy module loading means a module can have an error which isnt raised until the tools used. This gives a way to detect basic errors that used to happen on startup or when enabling the addon.
2011-03-17remove cmake WITH_INSTALL option since its a target now.Campbell Barton
2011-03-16update x3d test md5s for recent changes, also ensure directory is created or ↵Campbell Barton
export tests fail.
2011-03-13Fix "make test" on Mac, couldn't find executable.Brecht Van Lommel
2011-02-10fix [#26003] Twice applied modifier with Convert to mesh with several ↵Campbell Barton
multi-user objects convert_exec could do with a re-write, getting quite confusing. update md5's for ctest results and some renaming in mesh_validate code.
2011-01-23update testing md5's for changes in exporters.Campbell Barton
2011-01-23- fix problem with cmake, windows 'RelWithDebInfo' target, was giving error: ↵Campbell Barton
"ImportError: No module named _socket" because of copying wrong files over. - move test -> tests, this name is used elsewhere in lib/tests. - change interface code not to loop on a float value (clang warning), harmless, but with extreme cases an eternal loop would still be possible though unlikely.