mirror of
https://github.com/bab2min/Kiwi.git
synced 2026-06-17 01:54:27 +00:00
Add 64-bit mode check for Issue205 test
This commit is contained in:
parent
8be959b349
commit
dcd7516f65
1 changed files with 6 additions and 0 deletions
|
|
@ -1679,6 +1679,12 @@ TEST(KiwiCpp, IssueP189)
|
|||
|
||||
TEST(KiwiCpp, Issue205)
|
||||
{
|
||||
if (sizeof(void*) != 8)
|
||||
{
|
||||
std::cerr << "This test is only available in 64-bit mode" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
KiwiBuilder builder{ MODEL_PATH, 0, BuildOption::default_, };
|
||||
builder.addWord(u"함박 스테이크");
|
||||
auto kiwi1 = builder.build();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue