diff options
Diffstat (limited to 'src/multistresstest.c')
| -rw-r--r-- | src/multistresstest.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/multistresstest.c b/src/multistresstest.c index 8ad35e31..d9c9aea0 100644 --- a/src/multistresstest.c +++ b/src/multistresstest.c @@ -222,9 +222,11 @@ static void TestThread() { fprintf( stderr, "Got %.15g,%.15g,%.15g\n" - "Expected %.15g,%.15g,%.15g\n", + "Expected %.15g,%.15g,%.15g\n" + "Diff %.15g,%.15g,%.15g\n", x, y, z, - test->dst_x, test->dst_y, test->dst_z ); + test->dst_x, test->dst_y, test->dst_z, + x-test->dst_x, y-test->dst_y, z-test->dst_z); } #if reinit_every_iteration == 1 |
