summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorFrederik Carlier <frederik.carlier@quamotion.mobi>2017-02-06 16:25:36 +0100
committerJan Vorlicek <janvorli@microsoft.com>2017-02-06 16:25:36 +0100
commitec23bace223bf449a08bde2f1ec3e2c0135ce408 (patch)
treec6204175c044e1fa5b25c37d84845e6de10ed544 /tests/src
parentf07a4ba427e9a83dc04c03eceb97bf33f0335461 (diff)
downloadcoreclr-ec23bace223bf449a08bde2f1ec3e2c0135ce408.tar.gz
coreclr-ec23bace223bf449a08bde2f1ec3e2c0135ce408.tar.bz2
coreclr-ec23bace223bf449a08bde2f1ec3e2c0135ce408.zip
Android - Fix duplicate definitions of INT_MIN and PAGE_SIZE in unit tests (#9172)
* Don't refdefine PAGE_SIZE on Android * Don't re-declare INT_MIN on Android * Fixup
Diffstat (limited to 'tests/src')
-rwxr-xr-xtests/src/Interop/common/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/src/Interop/common/types.h b/tests/src/Interop/common/types.h
index cb59c42e9d..f183a07e4e 100755
--- a/tests/src/Interop/common/types.h
+++ b/tests/src/Interop/common/types.h
@@ -5,6 +5,7 @@
#ifndef _INTEROP_TYPES__H
#define _INTEROP_TYPES__H
+#undef INT_MIN
#define INT_MIN (-2147483647 - 1)
typedef char16_t WCHAR;