mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
22 lines
297 B
C++
22 lines
297 B
C++
// test that we can include umm_malloc.h from sketch (#1652)
|
|
#include <umm_malloc/umm_malloc.h>
|
|
|
|
#include <BSTest.h>
|
|
|
|
BS_ENV_DECLARE();
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
BS_RUN(Serial);
|
|
}
|
|
|
|
TEST_CASE("umm_info can be called", "[umm_malloc]")
|
|
{
|
|
umm_info(NULL, 1);
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
}
|