blob: 17b2ea02f64c24dca30d930d2f196b669dc3c193 [file] [log] [blame]
// SPDX-License-Identifier: Apache-2.0
// Copyright (C) 2018 IBM Corp.
#include "config.h"
#include "vpnor/pnor_partition_table.hpp"
#include <cassert>
static constexpr auto BLOCK_SIZE = 4 * 1024;
int main()
{
namespace vpnor = openpower::virtual_pnor;
struct pnor_partition part;
std::string line;
line = "partition01=FOO,,00001000,80,ECC,PRESERVED";
try
{
openpower::virtual_pnor::parseTocLine(line, BLOCK_SIZE, part);
}
catch (vpnor::MalformedTocEntry& e)
{
return 0;
}
assert(false);
}