forked from iree-org/iree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc_embed_data_test.cc
55 lines (47 loc) · 1.4 KB
/
c_embed_data_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2021 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "build_tools/embed_data/testembed1.h"
#include "build_tools/embed_data/testembed2.h"
#include "iree/testing/gtest.h"
namespace {
#if defined(_MSC_VER)
#define NEWLINE "\r\n"
#else
#define NEWLINE "\n"
#endif
TEST(Generator, TestContents) {
auto* toc1 = testembed1_create();
ASSERT_EQ("file1.bin", std::string(toc1->name));
EXPECT_EQ(R"(Are you '"Still"' here?)" NEWLINE, std::string(toc1->data));
#if defined(_MSC_VER)
EXPECT_EQ(25, toc1->size);
#else
EXPECT_EQ(24, toc1->size);
#endif
ASSERT_EQ(0, *(toc1->data + toc1->size));
++toc1;
ASSERT_EQ("file2.bin", std::string(toc1->name));
EXPECT_EQ(R"(¯\_(ツ)_/¯)" NEWLINE, std::string(toc1->data));
#if defined(_MSC_VER)
EXPECT_EQ(15, toc1->size);
#else
ASSERT_EQ(14, toc1->size);
#endif
ASSERT_EQ(0, *(toc1->data + toc1->size));
++toc1;
EXPECT_EQ(nullptr, toc1->name);
ASSERT_EQ(nullptr, toc1->data);
auto* toc2 = testembed2_create();
ASSERT_EQ("file3.bin", std::string(toc2->name));
EXPECT_EQ(R"(ᕕ( ᐛ )ᕗ)" NEWLINE, std::string(toc2->data));
#if defined(_MSC_VER)
EXPECT_EQ(15, toc2->size);
#else
EXPECT_EQ(14, toc2->size);
#endif
ASSERT_EQ(0, *(toc2->data + toc2->size));
}
} // namespace