summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/libdimension/Makefile.am6
-rw-r--r--tests/libdimension/prtree.c (renamed from tests/libdimension/bvst.c)43
2 files changed, 4 insertions, 45 deletions
diff --git a/tests/libdimension/Makefile.am b/tests/libdimension/Makefile.am
index 6fc3dc7..f59848e 100644
--- a/tests/libdimension/Makefile.am
+++ b/tests/libdimension/Makefile.am
@@ -22,7 +22,7 @@ INCLUDES = -I$(top_srcdir)/libdimension
check_LTLIBRARIES = libdimension-tests.la
check_PROGRAMS = error-test \
warning-test \
- bvst-test \
+ prtree-test \
png-test \
gl-test \
cxx-test
@@ -56,8 +56,8 @@ error_test_LDADD = libdimension-tests.la
warning_test_SOURCES = warning.c
warning_test_LDADD = libdimension-tests.la
-bvst_test_SOURCES = bvst.c
-bvst_test_LDADD = libdimension-tests.la
+prtree_test_SOURCES = prtree.c
+prtree_test_LDADD = libdimension-tests.la
png_test_SOURCES = png.c
png_test_LDADD = libdimension-tests.la
diff --git a/tests/libdimension/bvst.c b/tests/libdimension/prtree.c
index 33c737b..c75d8da 100644
--- a/tests/libdimension/bvst.c
+++ b/tests/libdimension/prtree.c
@@ -18,7 +18,7 @@
*************************************************************************/
/*
- * Basic tests of our Bounding Volume Splay Tree framework
+ * Basic tests of PR-trees
*/
#include "../../libdimension/dimension_impl.h"
@@ -27,46 +27,5 @@
int
main()
{
- dmnsn_bvst *tree;
- dmnsn_object *obj1, *obj2, *obj3;
-
- obj1 = dmnsn_new_object();
- obj2 = dmnsn_new_object();
- obj3 = dmnsn_new_object();
-
- obj1->bounding_box.min = dmnsn_new_vector(0.0, 0.0, 0.0);
- obj1->bounding_box.max = dmnsn_new_vector(1.0, 1.0, 1.0);
-
- obj2->bounding_box.min = dmnsn_new_vector(-2.0, -2.0, -2.0);
- obj2->bounding_box.max = dmnsn_new_vector(1.0, 1.0, 1.0);
-
- obj3->bounding_box.min = dmnsn_new_vector(-1.0, -1.0, -1.0);
- obj3->bounding_box.max = dmnsn_new_vector(0.0, 0.0, 0.0);
-
- tree = dmnsn_new_bvst();
-
- dmnsn_bvst_insert(tree, obj1);
- if (tree->root->object != obj1) {
- fprintf(stderr, "Wrong BVST built.\n");
- return EXIT_FAILURE;
- }
-
- dmnsn_bvst_insert(tree, obj2);
- if (tree->root->object != obj2 || tree->root->contains->object != obj1) {
- fprintf(stderr, "Wrong BVST built.\n");
- return EXIT_FAILURE;
- }
-
- dmnsn_bvst_insert(tree, obj3);
- if (tree->root->object != obj3 || tree->root->contains->object != obj1
- || tree->root->container->object != obj2) {
- fprintf(stderr, "Wrong BVST built.\n");
- return EXIT_FAILURE;
- }
-
- dmnsn_delete_bvst(tree);
- dmnsn_delete_object(obj3);
- dmnsn_delete_object(obj2);
- dmnsn_delete_object(obj1);
return EXIT_SUCCESS;
}