Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sdasgup3 committed Jun 5, 2018
1 parent e9c0b73 commit aec1b66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/apps/stoke_test_output.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ int main(int argc, char** argv) {
TestSetGadget test_set(seed);
TestOutputGadget test_output(seed);

if(test_set.size() != test_output.size()) {
if (test_set.size() != test_output.size()) {
assert(false && "Size Mismatch1");
}

if(test_output.size() == 0) {
if (test_output.size() == 0) {
assert(false && "No Output!");
}

Expand Down Expand Up @@ -109,7 +109,7 @@ int main(int argc, char** argv) {
reference_out_.push_back(*i);
}

if(reference_out_.size() != test_output.size()) {
if (reference_out_.size() != test_output.size()) {
assert(false && "Size Mismatch2");
}

Expand All @@ -124,7 +124,7 @@ int main(int argc, char** argv) {
auto & cs_output = test_output[i];


if(cs_sandbox_out != cs_output) {
if (cs_sandbox_out != cs_output) {
cout << "Sandbox Run:\n" << cs_sandbox_out << endl;
cout << "K Run:\n" << cs_output << endl;
}
Expand Down

0 comments on commit aec1b66

Please sign in to comment.