blob: 0d90b9124a9d1758505f80f08460a1d26f9aede3 [file] [log] [blame]
Andrew Jeffery50ab1de2018-02-26 10:02:39 +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}