mirror of
https://github.com/xenia-project/snappy.git
synced 2026-01-31 01:25:21 +01:00
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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user