mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add test: cstring
This commit is contained in:
parent
b51b14efa9
commit
d1379ff155
14 changed files with 478 additions and 0 deletions
32
libs/cstring/test/memcmp.cpp
Normal file
32
libs/cstring/test/memcmp.cpp
Normal file
|
@ -0,0 +1,32 @@
|
|||
#ifndef SPROUT_LIBS_CSTRING_TEST_MEMCMP_CPP
|
||||
#define SPROUT_LIBS_CSTRING_TEST_MEMCMP_CPP
|
||||
|
||||
#include <sprout/cstring/memcmp.hpp>
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
static void cstring_memcmp_test() {
|
||||
using namespace sprout;
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR unsigned char buf[] = "\0abc\0de";
|
||||
SPROUT_STATIC_CONSTEXPR unsigned char buf2[] = "\0abc\0de";
|
||||
SPROUT_STATIC_CONSTEXPR unsigned char buf3[] = "\0abcdef";
|
||||
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::memcmp(buf, buf2, 7);
|
||||
TESTSPR_BOTH_ASSERT(result == 0);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::memcmp(buf, buf3, 7);
|
||||
TESTSPR_BOTH_ASSERT(result < 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::cstring_memcmp_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_MEMCMP_CPP
|
Loading…
Add table
Add a link
Reference in a new issue