summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-12-04 19:07:57 -0500
committerTavian Barnes <tavianator@gmail.com>2011-12-04 19:07:57 -0500
commit4d3e396ce91dd70b0c9d7f3b1e991fd8ebd0d582 (patch)
treeacc360400de06cae7193250c7caef5c77c7b29a3
parent176054363582b08aaf93bb4fcc0f26521c0f884c (diff)
downloaddimension-4d3e396ce91dd70b0c9d7f3b1e991fd8ebd0d582.tar.xz
Rename complex test to cube test.
-rw-r--r--dimension/tests/Makefile.am4
-rw-r--r--dimension/tests/cube.dmnsn (renamed from dimension/tests/complex.dmnsn)2
2 files changed, 3 insertions, 3 deletions
diff --git a/dimension/tests/Makefile.am b/dimension/tests/Makefile.am
index fe224fa..684b2aa 100644
--- a/dimension/tests/Makefile.am
+++ b/dimension/tests/Makefile.am
@@ -18,10 +18,10 @@
###########################################################################
TESTS = demo.dmnsn \
- complex.dmnsn
+ cube.dmnsn
TEST_EXTENSIONS = .dmnsn
DMNSN_LOG_COMPILER = $(top_srcdir)/dimension/dimension
-AM_DMNSN_LOG_FLAGS = --strict
+AM_DMNSN_LOG_FLAGS = --strict -v
TESTS_ENVIRONMENT = PYTHONPATH=$(abs_top_builddir)
EXTRA_DIST = $(TESTS)
diff --git a/dimension/tests/complex.dmnsn b/dimension/tests/cube.dmnsn
index a5a3ec2..22c926d 100644
--- a/dimension/tests/complex.dmnsn
+++ b/dimension/tests/cube.dmnsn
@@ -56,7 +56,7 @@ def make_sphere(x, y, z, size):
pigment = sRGB(x/size, y/size, z/size),
finish = Ambient(sRGB(0.25))
+ Diffuse(sRGB(0.8))
- + Reflection(0, sRGB(0.5))
+ + Reflection(0, 0.25)
)
)