diff TestDefaults.cpp @ 7:43eb3a4b95c8

* dump more output
author cannam
date Tue, 17 Mar 2009 18:02:29 +0000
parents ba3c8cc649d3
children 3019cb6b538d
line wrap: on
line diff
--- a/TestDefaults.cpp	Tue Mar 17 17:54:57 2009 +0000
+++ b/TestDefaults.cpp	Tue Mar 17 18:02:29 2009 +0000
@@ -91,7 +91,9 @@
     if (data) destroyTestAudio(data, channels);
 
     if (!(f[0] == f[1])) {
-        r.push_back(warning("Explicitly setting current program to its supposed current value changes the results"));
+        Result res = warning("Explicitly setting current program to its supposed current value changes the results");
+        dump(res, f[0], f[1]);
+        r.push_back(res);
     } else {
         r.push_back(success());
     }
@@ -137,7 +139,9 @@
     if (data) destroyTestAudio(data, channels);
 
     if (!(f[0] == f[1])) {
-        r.push_back(warning("Explicitly setting parameters to their supposed default values changes the results"));
+        Result res = warning("Explicitly setting parameters to their supposed default values changes the results");
+        dump(res, f[0], f[1]);
+        r.push_back(res);
     } else {
         r.push_back(success());
     }