got rid of the remaining files with :: in the name

git-svn-id: https://zeitsenke.de/svn/SyncEvolution/trunk@121 15ad00c4-1369-45f4-8270-35d70d36bdcd
This commit is contained in:
Patrick Ohly 2006-06-01 20:06:19 +00:00
parent 9f7dfdc327
commit ad0133dd21

View file

@ -1218,7 +1218,7 @@ template<class T> void TestEvolution<T>::compareDatabases(const string &prefix,
sourceData = refData;
} else {
sourceData = getCurrentTest() + (prefix.size() ? "." : "") + prefix + ".source.test.vcf";
simplifyFilename(sourceData);
T source(
string( "dummy" ),
m_changeIds[0],
@ -1233,6 +1233,7 @@ template<class T> void TestEvolution<T>::compareDatabases(const string &prefix,
}
copyData = getCurrentTest() + (prefix.size() ? "." : "") + prefix + ".copy.test.vcf";
simplifyFilename(copyData);
T copy(
string( "dummy" ),
m_changeIds[copyDatabase],
@ -1248,6 +1249,7 @@ template<class T> void TestEvolution<T>::compareDatabases(const string &prefix,
stringstream cmd;
string diff = getCurrentTest() + (prefix.size() ? "." : "") + prefix + ".diff";
simplifyFilename(diff);
cmd << "perl synccompare " << sourceData << " " << copyData << ">" << diff;
cmd << " || (echo; echo '*** " << diff << " non-empty ***'; cat " << diff << "; exit 1 )";