From 1007bf167d268b5b818aa088e39d4a2fd7ff8ab3 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 9 Aug 2002 23:25:02 +0000 Subject: [PATCH] Added B_BAD_TEAM_ID to known error codes. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@671 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/cppunit/TestUtils.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/cppunit/TestUtils.cpp b/src/tools/cppunit/TestUtils.cpp index 7a3673107c..0a2886f566 100644 --- a/src/tools/cppunit/TestUtils.cpp +++ b/src/tools/cppunit/TestUtils.cpp @@ -156,6 +156,10 @@ status_t DecodeResult(status_t result) { str = "B_BAD_ADDRESS"; break; + case B_BAD_TEAM_ID: + str = "B_BAD_TEAM_ID"; + break; + // OS Errors case B_BAD_PORT_ID: str = "B_BAD_PORT_ID";