Put the timestamp in the reftest HTTP server's path to prevent cross-contamination of cached tests between branches, in case those different branches run reftests on the same profile. r=Waldo

This commit is contained in:
L. David Baron 2009-02-20 22:07:14 -08:00
Родитель da2d2cecb2
Коммит 77a5e1e26f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -422,7 +422,7 @@ function ServeFiles(manifestURL, depth, directory, files)
}
gCount++;
var path = "/" + gCount;
var path = "/" + Date.now() + "/" + gCount;
gServer.registerDirectory(path + "/", directory);
var secMan = CC[NS_SCRIPTSECURITYMANAGER_CONTRACTID]