summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-01-02 10:15:33 -0500
committerOz Linden <oz@lindenlab.com>2013-01-02 10:15:33 -0500
commitcd1871d2e39bfee8a6e5bc61ece40a764ff7cdb4 (patch)
treeab3704b8326f48aa8c934242226482cba33e5257 /indra/test
parent8c8d5ef924d552b945395d900fb6e1cd266196df (diff)
parent55dfff68d4c63918661def881280eae76a63f233 (diff)
merge changes for DRTVWR-269
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/lluuidhashmap_tut.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/test/lluuidhashmap_tut.cpp b/indra/test/lluuidhashmap_tut.cpp
index 408bc3faf1..9712a613f4 100644
--- a/indra/test/lluuidhashmap_tut.cpp
+++ b/indra/test/lluuidhashmap_tut.cpp
@@ -117,9 +117,10 @@ namespace tut
std::string savefile(gDirUtilp->add(tempdir, "lluuidhashmap_tut.save.txt"));
const int numElementsToCheck = 32*256*32;
std::vector<LLUUID> idList;
- if (gDirUtilp->fileExists(savefile))
+ if ((! getenv("TEAMCITY_PROJECT_NAME")) && gDirUtilp->fileExists(savefile))
{
- // We have saved data from a previous failed run. Reload that data.
+ // This is not a TeamCity build, and we have saved data from a
+ // previous failed run. Reload that data.
std::ifstream inf(savefile.c_str());
if (! inf.is_open())
{
@@ -139,8 +140,8 @@ namespace tut
}
else
{
- // savefile does not exist (normal case): regenerate idList from
- // scratch.
+ // This is a TeamCity build, or (normal case) savefile does not
+ // exist: regenerate idList from scratch.
for (int i = 0; i < numElementsToCheck; ++i)
{
LLUUID id;