blob: 06dea8cddf327b04bf3bee9bdf3c486b97962449 [file] [log] [blame]
Andrew Jefferyb02ef432018-02-26 09:57:17 +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 const std::string line = "partition01=,00000000,00000400,80,ECC,PRESERVED";
16 struct pnor_partition part;
17
18 try
19 {
20 vpnor::parseTocLine(line, BLOCK_SIZE, part);
21 }
22 catch (vpnor::MalformedTocEntry& e)
23 {
24 return 0;
25 }
26
27 assert(false);
28}