mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-12 17:26:04 +00:00
15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "../framework.hpp"
|
|
|
|
#undef NDEBUG
|
|
#ifndef DEBUG_BUILD
|
|
#define DEBUG_BUILD
|
|
#endif // DEBUG_BUILD
|
|
#include <assert.h>
|
|
|
|
#include <mscclpp/poll_device.hpp>
|
|
|
|
TEST(CompileTest, Assert) { assert(true); }
|