blob: e305bff5dd5181d5a52ccc2bdfef6df5bf85d4bc [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"
Andrew Jefferyb02ef432018-02-26 09:57:17 +10305
Andrew Jefferyde08ca22019-03-18 13:23:46 +10306#include "vpnor/table.hpp"
Andrew Jefferyb02ef432018-02-26 09:57:17 +10307
Andrew Jeffery261f61a2019-03-14 09:57:28 +10308#include <cassert>
William A. Kennington IIId5f1d402018-10-11 13:55:04 -07009
Andrew Jefferyb02ef432018-02-26 09:57:17 +103010static constexpr auto BLOCK_SIZE = 4 * 1024;
11
12int main()
13{
14 namespace vpnor = openpower::virtual_pnor;
15
16 const std::string line = "partition01=,00000000,00000400,80,ECC,PRESERVED";
17 struct pnor_partition part;
18
19 try
20 {
21 vpnor::parseTocLine(line, BLOCK_SIZE, part);
22 }
23 catch (vpnor::MalformedTocEntry& e)
24 {
25 return 0;
26 }
27
28 assert(false);
29}