comparison TestOutputs.cpp @ 12:7dd6a549b2f9

...
author cannam
date Wed, 18 Mar 2009 12:20:28 +0000
parents 3019cb6b538d
children b1bc4d045a4b
comparison
equal deleted inserted replaced
11:82ef943a1bd2 12:7dd6a549b2f9
93 r.push_back(error("Data returned on nonexistent output")); 93 r.push_back(error("Data returned on nonexistent output"));
94 } 94 }
95 } 95 }
96 for (int o = 0; o < (int)outputs.size(); ++o) { 96 for (int o = 0; o < (int)outputs.size(); ++o) {
97 if (used.find(o) == used.end()) { 97 if (used.find(o) == used.end()) {
98 r.push_back(note("No results returned for one or more outputs")); 98 r.push_back(note("No results returned for output \"" + outputs[o].identifier + "\""));
99 } 99 }
100 } 100 }
101 101
102 if (!r.empty() && (options & Verbose)) dump(f); 102 if (!r.empty() && (options & Verbose)) dump(f);
103 return r; 103 return r;