Bug 445853 - Add namespaces to various tests: these tests share a class name with other tests, which makes XPCOMGC rewriting very confused. r=biesi

This commit is contained in:
Benjamin Smedberg 2008-07-27 21:09:10 -04:00
Родитель 1b1604ae0d
Коммит 4584b547e8
4 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -50,6 +50,8 @@
#include "nsSupportsArray.h" #include "nsSupportsArray.h"
#include "nsIComponentRegistrar.h" #include "nsIComponentRegistrar.h"
namespace TestPageLoad {
int getStrLine(const char *src, char *str, int ind, int max); int getStrLine(const char *src, char *str, int ind, int max);
nsresult auxLoad(char *uriBuf); nsresult auxLoad(char *uriBuf);
//---------------------------------------------------------------------- //----------------------------------------------------------------------
@ -342,6 +344,9 @@ nsresult auxLoad(char *uriBuf)
//---------Buffer writer fun--------- //---------Buffer writer fun---------
} // namespace
using namespace TestPageLoad;
//---------MAIN----------- //---------MAIN-----------

Просмотреть файл

@ -6,6 +6,8 @@
#include "nsIComponentRegistrar.h" #include "nsIComponentRegistrar.h"
#include "nsISupportsArray.h" #include "nsISupportsArray.h"
namespace TestPerf {
static nsIIOService *gIOService = nsnull; static nsIIOService *gIOService = nsnull;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -176,6 +178,10 @@ print_usage()
printf("usage: TestPerf [-sync|-async] <file-of-urls>\n"); printf("usage: TestPerf [-sync|-async] <file-of-urls>\n");
} }
} // namespace
using namespace TestPerf;
int int
main(int argc, char **argv) main(int argc, char **argv)
{ {

Просмотреть файл

@ -88,6 +88,8 @@
#include "nsInt64.h" #include "nsInt64.h"
namespace TestProtocols {
#if defined(PR_LOGGING) #if defined(PR_LOGGING)
// //
// set NSPR_LOG_MODULES=Test:5 // set NSPR_LOG_MODULES=Test:5
@ -781,6 +783,10 @@ nsresult LoadURLFromConsole()
return NS_OK; return NS_OK;
} }
} // namespace
using namespace TestProtocols;
int int
main(int argc, char* argv[]) main(int argc, char* argv[])
{ {

Просмотреть файл

@ -69,6 +69,8 @@ static PRLogModuleInfo *sLog = PR_NewLogModule("Test");
#define LOG(args) printf args #define LOG(args) printf args
#endif #endif
namespace proxytests {
static nsresult static nsresult
GetThreadFromPRThread(PRThread *prthread, nsIThread **result) GetThreadFromPRThread(PRThread *prthread, nsIThread **result)
{ {
@ -486,6 +488,9 @@ RunApartmentTest()
return NS_OK; return NS_OK;
} }
} // namespace
using namespace proxytests;
int int
main(int argc, char **argv) main(int argc, char **argv)