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:
Родитель
1b1604ae0d
Коммит
4584b547e8
|
@ -50,6 +50,8 @@
|
|||
#include "nsSupportsArray.h"
|
||||
#include "nsIComponentRegistrar.h"
|
||||
|
||||
namespace TestPageLoad {
|
||||
|
||||
int getStrLine(const char *src, char *str, int ind, int max);
|
||||
nsresult auxLoad(char *uriBuf);
|
||||
//----------------------------------------------------------------------
|
||||
|
@ -342,6 +344,9 @@ nsresult auxLoad(char *uriBuf)
|
|||
|
||||
//---------Buffer writer fun---------
|
||||
|
||||
} // namespace
|
||||
|
||||
using namespace TestPageLoad;
|
||||
|
||||
//---------MAIN-----------
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
#include "nsIComponentRegistrar.h"
|
||||
#include "nsISupportsArray.h"
|
||||
|
||||
namespace TestPerf {
|
||||
|
||||
static nsIIOService *gIOService = nsnull;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -176,6 +178,10 @@ print_usage()
|
|||
printf("usage: TestPerf [-sync|-async] <file-of-urls>\n");
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
using namespace TestPerf;
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
|
|
|
@ -88,6 +88,8 @@
|
|||
|
||||
#include "nsInt64.h"
|
||||
|
||||
namespace TestProtocols {
|
||||
|
||||
#if defined(PR_LOGGING)
|
||||
//
|
||||
// set NSPR_LOG_MODULES=Test:5
|
||||
|
@ -781,6 +783,10 @@ nsresult LoadURLFromConsole()
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
using namespace TestProtocols;
|
||||
|
||||
int
|
||||
main(int argc, char* argv[])
|
||||
{
|
||||
|
|
|
@ -69,6 +69,8 @@ static PRLogModuleInfo *sLog = PR_NewLogModule("Test");
|
|||
#define LOG(args) printf args
|
||||
#endif
|
||||
|
||||
namespace proxytests {
|
||||
|
||||
static nsresult
|
||||
GetThreadFromPRThread(PRThread *prthread, nsIThread **result)
|
||||
{
|
||||
|
@ -486,6 +488,9 @@ RunApartmentTest()
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
using namespace proxytests;
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
|
|
Загрузка…
Ссылка в новой задаче