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
path: root/tests
AgeCommit message (Collapse)Author
2017-08-16Depsgraph/Layers: Keep original visibility when doing full scene copyDalai Felinto
Originally we were not respecting the original visibility flags of the collections. However this is required for Copy-on-write (CoW). Remember to update the svn lib tests folder. I had to update some of the json files there. Also adding a new unittest for this particular issue: Test render_layer_scene_copy_f
2017-08-11Merge branch 'master' into blender2.8Campbell Barton
2017-08-11Cycles tests: Draw images on top of checkerboardSergey Sharybin
This way it's easier to see alpha-channel only images, such as shadow catcher images on transparent film.
2017-08-11Merge branch 'master' into blender2.8Campbell Barton
2017-08-11Cycles: add denoising tests, keep new image even if no reference exists.Brecht Van Lommel
2017-08-09Alembic: Adjusted unit test for Blender 2.8 to use scene layers.Sybren A. Stüvel
2017-08-09Merge branch 'master' into blender2.8Sybren A. Stüvel
2017-08-09Fixed Alembic unit testSybren A. Stüvel
Commit b6d7cdd3cee9312156e20783248a3b12420b7a53 changed how the mesh data is deformed, which wasn't taken into account yet in this unit test. Instead of directly reading the mesh vertices (which aren't animated any more), we convert the modified mesh to a new one, and inspect those vertices instead.
2017-08-09Modules test: Don't print backtrace for files which are ignoredSergey Sharybin
This could make output really polluted, where it'll be hard to see actual issues. It is still possible to have all backtraces printed using BLENDER_VERBOSE environment variable.
2017-08-08Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/depsgraph/intern/builder/deg_builder_relations.cc source/blender/editors/object/object_add.c source/blender/python/intern/bpy_app_handlers.c
2017-08-08Fix compilation error when building without BlenderSergey Sharybin
Simply disabled python tests, they can't be run anyway (since blender target is not enabled) and we don't have any player-related tests in that folder.
2017-08-07Merge branch 'master' into blender2.8Bastien Montagne
2017-08-07Cycles tests: CMake side changes to support recent files split in the SVN repoSergey Sharybin
2017-08-07Cycles: add HTML report to inspect failed test images.Brecht Van Lommel
Shows new, reference and diff renders, with mouse hover to flip between new and ref for easy comparison. This generates a report.html in build_dir/tests/cycles, stored along with the new and diff images. Differential Revision: https://developer.blender.org/D2770
2017-08-04Merge branch 'master' into blender2.8Campbell Barton
2017-08-04CMake: test build configuration supportCampbell Barton
D2765 by @akitula
2017-08-03Merge branch 'master' into blender2.8Campbell Barton
2017-08-01Tweak multi-units tests to match new precision handling in conversion from ↵Bastien Montagne
raw value to prety-printed one. Note that new code allows to enable again the '1 million miles' tests.
2017-07-29BLI_memiter: Small API for many small allocationsCampbell Barton
- Each allocation can be a different size (but should be smaller than the chunk size). - Result can be looped over in order of allocation. - Allocations are aligned to pointer size to avoid unaligned reads.
2017-07-25Merge branch 'master' into blender2.8Campbell Barton
2017-07-25Python module test: Don't cfail the test when import failure happens in presetSergey Sharybin
2017-07-24Fix compilation error of alembic test after recent eval_ctx changesSergey Sharybin
2017-07-17Fix layers unittest - we cannot use nestted get_pointer callsDalai Felinto
Remember to update your //lib/tests folder as well. Patch by Bastien Montagne(mont29)
2017-07-17Revert "Unittests: Workaround for basact->object.id.name written as DATA"Dalai Felinto
This reverts commit aa578fba534d7d7cab215d8f57c478d641b05db7.
2017-07-17Unittests: Workaround for basact->object.id.name written as DATADalai Felinto
This was introduced on e7fb013a60dd. Although I would love to investigate the issue I'm mostly concerned with gettings the tests working again.
2017-07-17Unittests: Make sure layer tests pass with or without workspaceDalai Felinto
2017-07-14Merge remote-tracking branch 'origin/master' into blender2.8Dalai Felinto
2017-07-14Fix unit test error on WindowsSybren A. Stüvel
2017-07-11Alembic: Adjusted unittest for Blender 2.8Sybren A. Stüvel
2017-07-11Merge branch 'master' into blender2.8Sybren A. Stüvel
2017-07-11Fix T52022 Alembic Inherits transform not taken into accountSybren A. Stüvel
Alembic's "inherits transform" flag wasn't taken into account when constructing the parent object relations.
2017-07-03Merge branch 'master' into blender2.8Alexander Romanov
2017-07-03Fixed build error on Windows / VS2015Sybren A. Stüvel
2017-06-30Fix T51877: Deleting a scene uses freed memoryDalai Felinto
At the moment libblock_remap_data_preprocess is using FOREACH_SCENE_OBJECT to iterate over all the objects of the scene and unlink them. However we were storing a reference to the Base of the removed object. Anyways, the loop is now sanitized so that this crash no longer happens. Also now we have an unittest for this.
2017-06-21Merge remote-tracking branch 'origin/master' into blender2.8Dalai Felinto
2017-06-19Alembic tests: make failures a bit easier to diagnose.Sybren A. Stüvel
2017-06-19Fix T51762: Unit test script_alembic_import is failing.Sybren A. Stüvel
Implemented workaround for use with the legacy depsgraph.
2017-06-19Fixed bl_load_py_modules / script_load_modules unit testSybren A. Stüvel
It tried to assert that addons/io_blend_utils/blender_bam-unpacked.whl/__init__.py was loaded when the io_blend_utils module was imported. However, this happens only on demand, and not directly when importing the add-on.
2017-06-19Use for/else instead of setting 'ok' variable.Sybren A. Stüvel
This is more efficient, and this use case is exactly what the else clause is for.
2017-06-19Removed trailing spacesSybren A. Stüvel
2017-06-19Cleanup: move copy-paste code into functionCampbell Barton
2017-06-15Layers: Scene copy should copy selection as well.Dalai Felinto
We need this for Depsgraph, otherwise CoW scene will have different selection properties.
2017-06-14Merge branch 'master' into blender2.8Bastien Montagne
2017-06-14Make whole ID copying code use const source pointer.Bastien Montagne
Noisy change, but safe, and better do it sooner than later if we are to rework copying code. Also, previous commit shows this *is* useful to catch some mistakes.
2017-06-12Merge branch 'master' into blender2.8Sergey Sharybin
2017-06-12Cleanup: indentation, long linesCampbell Barton
2017-06-12Correct gtest EXPECT useCampbell Barton
2017-06-11GTest: initial kdopbvh testCampbell Barton
Currently only find-nearest, ray-casting needs to be added.
2017-06-09Fix failing render-layer tests after workpsace commitJulian Eisel
2017-06-09Merge branch 'master' into blender2.8Campbell Barton