1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright (C) 2018 IBM Corp. 3 4 #include "config.h" 5 6 #include "vpnor/pnor_partition_table.hpp" 7 8 #include <cassert> 9 10 static constexpr auto BLOCK_SIZE = 4 * 1024; 11 12 int main() 13 { 14 namespace vpnor = openpower::virtual_pnor; 15 16 struct pnor_partition part; 17 std::string line; 18 19 line = "partition01=FOO,,00001000,80,ECC,PRESERVED"; 20 try 21 { 22 openpower::virtual_pnor::parseTocLine(line, BLOCK_SIZE, part); 23 } 24 catch (vpnor::MalformedTocEntry& e) 25 { 26 return 0; 27 } 28 29 assert(false); 30 } 31