blob: 1d20a46e12df79db19601efbf6994bac39c1f763 [file] [log] [blame]
Andrew Jeffery437c80f2018-02-26 09:59:51 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3
4#include "config.h"
5#include <assert.h>
6
Andrew Jeffery53c21aa2018-03-26 11:56:16 +10307#include "vpnor/pnor_partition_table.hpp"
Andrew Jeffery437c80f2018-02-26 09:59:51 +10308
9static constexpr auto BLOCK_SIZE = 4 * 1024;
10
11int main()
12{
13 namespace vpnor = openpower::virtual_pnor;
14
15 struct pnor_partition part;
16 std::string line;
17
18 line = "partition01=FOO,,00001000,80,ECC,PRESERVED";
19 try
20 {
21 openpower::virtual_pnor::parseTocLine(line, BLOCK_SIZE, part);
22 }
23 catch (vpnor::MalformedTocEntry& e)
24 {
25 return 0;
26 }
27
28 assert(false);
29}