aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 9c0db5f2..ecabe9eb 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -596,12 +596,22 @@ if 'benchmark' not in sys.argv:
{ 't', 0.27, 2 },
};
+ const unsigned char faceedgesidx[6][4] =
+ {
+ { 4, 5, 8, 10 },
+ { 6, 7, 9, 11 },
+ { 0, 2, 8, 9 },
+ { 1, 3, 10,11 },
+ { 0, 1, 4, 6 },
+ { 2, 3, 5, 7 },
+ };
+
int main( int argc, const char *argv[] ) {
- printf("*%d,%d,%d*\\n", iub[0].c, int(iub[1].p*100), iub[2].pi);
+ printf("*%d,%d,%d,%d*\\n", iub[0].c, int(iub[1].p*100), iub[2].pi, faceedgesidx[3][2]);
return 0;
}
'''
- self.do_test(src, '*97,15,3*')
+ self.do_test(src, '*97,15,3,10*')
def test_conststructs(self):
src = '''