Bug #16994338 PARSING TAP OUTPUT OF UNIT TEST EXPLAIN_FILENAME-T FAILS

Problem:

The problem is that explain_filename-t is not printing a test plan as
required by the TAP protocol. The test invokes plan(NO_PLAN) but does not
invoke exit_status() at the end, where the plan would be printed.

Solution:

Invoke exit_status() at the end.
This commit is contained in:
Annamalai Gurusami 2013-06-26 10:02:42 +05:30
parent 7b66df16a1
commit 26d14295a1

View File

@ -158,6 +158,6 @@ int main()
"\"test\".\"t@0023#\"",
EXPLAIN_PARTITIONS_AS_COMMENT);
return 0;
return exit_status();
}