blob: 0ef47a8ea9af829b8472d0fab32a6d3bffc47d18 [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
7#include "pnor_partition_table.hpp"
8
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}