Skip to content

Commit

Permalink
Fix variable reference in regression script.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmurray committed Aug 7, 2015
1 parent 936eeec commit ba85fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_reg_test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@
parse_single_test("create", "calculate");
} else {
my $qor_test_failures = parse_single_test("check", "calculate");
print "\nTest '$test' had $test_failures qor test failures\n";
$num_failed_tests += $test_failures;
print "\nTest '$test' had $qor_test_failures qor test failures\n";
$num_failed_tests += $qor_test_failures;
}
}
print "\nTest complete\n\n";
Expand Down

0 comments on commit ba85fb7

Please sign in to comment.