[svn-r22755] When Scot Breitenfeld committed his test function test_valid_path in r22078 6 months ago, he replaced test_text_type

function with his function, thus skipped test_text_type test.  I'm restoring it back in this checkin.

Tested on jam - simple change.
This commit is contained in:
Raymond Lu 2012-09-12 11:32:33 -05:00
parent 6f1ae47a37
commit 0ffdaff795

View File

@ -2152,9 +2152,12 @@ int main( void )
/* test attribute functions */
nerrors += test_attr();
/* test text-dtype functions */
/* test valid path functions */
nerrors += test_valid_path();
/* test text-dtype functions */
nerrors += test_text_dtype();
/* check for errors */
if (nerrors)
goto error;