Make ./snappy_unittest pass without "srcdir" being defined.

Previously, snappy_unittests would read from an absolute path /testdata/..;
convert it to use a relative path instead.

Patch from Marc-Antonie Ruel.

R=maruel


git-svn-id: https://snappy.googlecode.com/svn/trunk@72 03e5f5b5-db94-4691-08a0-1a8bf15f6143
This commit is contained in:
snappy.mirrorbot@gmail.com 2013-02-05 14:30:05 +00:00
parent 27a0cc3949
commit 8168446c7e
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ string ReadTestDataFile(const string& base) {
&contents,
file::Defaults()).CheckSuccess();
} else {
file::ReadFileToString("/testdata/" + base,
file::ReadFileToString("testdata/" + base,
&contents,
file::Defaults()).CheckSuccess();
}