aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/bullet/readme.txt3
-rw-r--r--tests/bullet/src/BulletCollision/CollisionDispatch/btManifoldResult.h3
-rw-r--r--tests/runner.py4
3 files changed, 7 insertions, 3 deletions
diff --git a/tests/bullet/readme.txt b/tests/bullet/readme.txt
index b524e36f..8caa777b 100644
--- a/tests/bullet/readme.txt
+++ b/tests/bullet/readme.txt
@@ -2,3 +2,6 @@ The files in this directory are the Bullet Physics library, version 2.78.
See README and LICENSE files for details.
+Changes to the source appear in the following files: (search for XXX Emscripten)
+ - btManifoldResult.h
+
diff --git a/tests/bullet/src/BulletCollision/CollisionDispatch/btManifoldResult.h b/tests/bullet/src/BulletCollision/CollisionDispatch/btManifoldResult.h
index 18199b49..78537195 100644
--- a/tests/bullet/src/BulletCollision/CollisionDispatch/btManifoldResult.h
+++ b/tests/bullet/src/BulletCollision/CollisionDispatch/btManifoldResult.h
@@ -28,7 +28,8 @@ class btManifoldPoint;
typedef bool (*ContactAddedCallback)(btManifoldPoint& cp, const btCollisionObject* colObj0,int partId0,int index0,const btCollisionObject* colObj1,int partId1,int index1);
extern ContactAddedCallback gContactAddedCallback;
-//#define DEBUG_PART_INDEX 1
+// XXX Emscripten: Uncomment the next line, to prevent SAFE_HEAP warnings
+#define DEBUG_PART_INDEX 1
///btManifoldResult is a helper class to manage contact results.
diff --git a/tests/runner.py b/tests/runner.py
index 6b76a9e2..cf347f0c 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2388,7 +2388,7 @@ else:
assert(os.path.exists(CLOSURE_COMPILER))
- COMPILER = LLVM_GCC
+ COMPILER = CLANG
JS_ENGINE = SPIDERMONKEY_ENGINE
#JS_ENGINE = V8_ENGINE
@@ -2406,7 +2406,7 @@ else:
USE_CLOSURE_COMPILER = 1
- TEST_REPS = 3
+ TEST_REPS = 10
TOTAL_TESTS = 4
tests_done = 0