awtk/tests/rom_fs_test.cc

12 lines
302 B
C++
Raw Normal View History

2018-06-27 13:46:42 +08:00
#include "base/rom_fs.h"
2018-06-24 12:23:51 +08:00
#include "gtest/gtest.h"
TEST(ROMFS, basic) {
char rbuff[100];
const char* buff = "hello world";
2018-06-24 18:03:28 +08:00
rom_file_t* f = rom_fopen_buff((const uint8_t*)buff, sizeof(buff));
2018-06-24 12:23:51 +08:00
ASSERT_EQ(rom_fread(rbuff, 2, 1, f), 1);
ASSERT_EQ(memcmp(rbuff, "he", 2), 0);
rom_fclose(f);
}