ports/www/chromium/files/patch-base__test__expectations__expectation.cc
Rene Ladan b89b6a49b0 - Update to 29.0.1547.65, which fixes a bug in Google Sync.
- Add an option to run regression test, default off. [1] If this option is
  selected, an extra distribution file containing test data is downloaded
  from an upstream mastersite.
- Rename the CLANG option to GCC and flip the default to off, as clang is
  the default compiler for this port for quite some time now. [2]

Submitted by:	George Liaskos [1,2]
2013-09-03 16:06:13 +00:00

19 lines
590 B
C++

--- base/test/expectations/expectation.cc.orig 2013-08-31 23:17:45.000000000 +0300
+++ base/test/expectations/expectation.cc 2013-08-31 23:18:59.000000000 +0300
@@ -58,6 +58,7 @@
variant != "64") {
return false;
}
+ } else if (name == "FreeBSD") {
} else if (name == "ChromeOS") {
// TODO(rsesek): Figure out what ChromeOS needs.
} else if (name == "iOS") {
@@ -119,6 +120,8 @@
platform.variant = "32";
else if (arch == "x86_64")
platform.variant = "64";
+#elif defined(OS_FREEBSD)
+ platform.name = "FreeBSD";
#else
NOTREACHED();
#endif