mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-24 08:45:10 +03:00
* Test: fixing itoa implementation, clean-up of tests and test runner Update itoa to be the same as newlib, fixing edgecase of abs(INT_MIN) Update WString.cpp:toString() integer conversions to use noniso funcs Remove legacy gcc versions from Makefile and allow overrides Don't fallback to c11 and c++11, source cannot support that * CXX and CC are make predefined values, assuming ?= does not work (?)
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
/*
|
|
Arduino.cpp - Mocks for common Arduino APIs
|
|
Copyright © 2016 Ivan Grokhotkov
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
#include "ArduinoCatch.hpp"
|
|
|
|
std::ostream& operator<<(std::ostream& out, const String& str)
|
|
{
|
|
out.write(str.c_str(), str.length());
|
|
return out;
|
|
}
|
|
|
|
namespace Catch
|
|
{
|
|
|
|
std::string toString(const String& str)
|
|
{
|
|
return std::string(str.begin(), str.length());
|
|
}
|
|
|
|
std::string StringMaker<String>::convert(String const& str)
|
|
{
|
|
return toString(str);
|
|
}
|
|
|
|
} // namespace Catch
|