mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 02:49:14 -04:00
- 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]
18 lines
784 B
C++
18 lines
784 B
C++
--- base/process_util_unittest.cc.orig 2013-08-31 13:38:46.000000000 +0300
|
|
+++ base/process_util_unittest.cc 2013-08-31 13:40:13.000000000 +0300
|
|
@@ -1086,7 +1086,7 @@
|
|
// functions so that they don't crash if the program is out of memory, so the
|
|
// OOM tests aren't supposed to work.
|
|
// TODO(vandebo) make this work on Windows too.
|
|
-#if !defined(OS_ANDROID) && !defined(OS_OPENBSD) && \
|
|
+#if !defined(OS_ANDROID) && !defined(OS_BSD) && \
|
|
!defined(OS_WIN) && \
|
|
!defined(ADDRESS_SANITIZER) && !defined(THREAD_SANITIZER)
|
|
|
|
@@ -1303,5 +1303,5 @@
|
|
#endif // !ARCH_CPU_64_BITS
|
|
#endif // OS_MACOSX
|
|
|
|
-#endif // !defined(OS_ANDROID) && !defined(OS_OPENBSD) &&
|
|
+#endif // !defined(OS_ANDROID) && !defined(OS_BSD) &&
|
|
// !defined(OS_WIN) && !defined(ADDRESS_SANITIZER)
|