1672. [cleanup] Tests which only function in a threaded build

now return R:THREADONLY (rather than R:UNTESTED)
                        in a non-threaded build.
This commit is contained in:
Mark Andrews
2004-06-21 06:58:02 +00:00
parent 1b6cc725ef
commit fda92f1127
5 changed files with 14 additions and 6 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: t_api.c,v 1.48.2.1.2.4 2004/03/08 09:05:13 marka Exp $ */
/* $Id: t_api.c,v 1.48.2.1.2.5 2004/06/21 06:58:02 marka Exp $ */
#include <config.h>
@@ -390,6 +390,9 @@ t_result(int result) {
case T_UNTESTED:
p = "UNTESTED";
break;
case T_THREADONLY:
p = "THREADONLY";
break;
default:
p = "UNKNOWN";
break;