blob: 2face11c46eeb9e83fbef7d910dbadf129031e89 [file] [log] [blame]
Andrew Jefferybfe6f802018-02-27 17:11:17 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
William A. Kennington IIId5f1d402018-10-11 13:55:04 -07003#include "config.h"
4
Andrew Jefferybfe6f802018-02-27 17:11:17 +10305extern "C" {
Andrew Jeffery035ad762019-03-18 13:02:01 +10306#include "backend.h"
Andrew Jefferybfe6f802018-02-27 17:11:17 +10307#include "test/mbox.h"
8#include "test/system.h"
9}
10
Andrew Jefferyde08ca22019-03-18 13:23:46 +103011#include "vpnor/table.hpp"
Andrew Jeffery30bcf842018-03-26 12:13:20 +103012#include "vpnor/test/tmpd.hpp"
Andrew Jefferybfe6f802018-02-27 17:11:17 +103013
Andrew Jeffery035ad762019-03-18 13:02:01 +103014#include <cassert>
15#include <cstring>
16
Andrew Jefferybfe6f802018-02-27 17:11:17 +103017static constexpr auto BLOCK_SIZE = 0x1000;
18static constexpr auto ERASE_SIZE = BLOCK_SIZE;
19static constexpr auto PNOR_SIZE = 64 * 1024 * 1024;
20static constexpr auto MEM_SIZE = 32 * 1024 * 1024;
21static constexpr auto N_WINDOWS = 1;
22static constexpr auto WINDOW_SIZE = BLOCK_SIZE * 2;
23
24const std::string toc[] = {
25 "partition01=ONE,00001000,00002000,80,",
26 "partition02=TWO,00002000,00003000,80,",
27};
28
29int main()
30{
31 namespace test = openpower::virtual_pnor::test;
32 namespace fs = std::experimental::filesystem;
33 namespace vpnor = openpower::virtual_pnor;
34
35 struct mbox_context* ctx;
36
37 system_set_reserved_size(MEM_SIZE);
38 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE);
39
Evan Lojewskif1e547c2019-03-14 14:34:33 +103040 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
Andrew Jefferybfe6f802018-02-27 17:11:17 +103041
Evan Lojewskif1e547c2019-03-14 14:34:33 +103042 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jefferybfe6f802018-02-27 17:11:17 +103043
44 fs::remove(root.ro() / "TWO");
45
46 try
47 {
Evan Lojewskif1e547c2019-03-14 14:34:33 +103048 vpnor::partition::Table table(&ctx->backend);
Andrew Jefferybfe6f802018-02-27 17:11:17 +103049 }
50 catch (vpnor::InvalidTocEntry& e)
51 {
52 return 0;
53 }
54
55 assert(false);
56}