| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #pragma once
- #include "TargetVer.h"
- #ifdef _WIN32
- #include <windows.h>
- #include <winbase.h>
- #include <oleauto.h>
- #else
- #include <CommonPal.h>
- #endif
- #ifdef _MSC_VER
- #pragma warning(disable:4985)
- #include <intrin.h>
- #endif
- #ifndef USING_PAL_STDLIB
- #include <wtypes.h>
- #include <stdio.h>
- #endif
- // This is an intentionally lame name because we can't use Assert or Verify etc
- #define VerifyCondition(expr) (DoVerify((expr), #expr, __FILE__, __LINE__))
- void DoVerify(bool value, const char * expr, const char * file, int line);
- inline unsigned int GetRandomInteger(unsigned int limit)
- {
- return rand() % limit;
- }
- #include "WeightedTable.h"
- #include "Common.h"
- #include "CommonInl.h"
- extern Recycler * recyclerInstance;
- #include "GCStress.h"
- #include "RecyclerTestObject.h"
|