Initial set of scripts to validate correctness of Blender release

Currently does basic checks:

- Checks whether numpy imports and allows to do basic manipulation
- Checks whether requests imports and allows to do basic manipulation
- Checks that all binaries are static
This commit is contained in:
Sergey Sharybin
2017-04-06 14:53:46 +02:00
parent cb16b7ff91
commit 1c02cb8d40
11 changed files with 510 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# This code tests bug reported in T50703
import numpy
a = numpy.array([[3, 2, 0], [3, 1, 0]], dtype=numpy.int32)
a[0]