CBMC
require_symbol.cpp
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Unit test utilities
4 
5 Author: Diffblue Limited.
6 
7 \*******************************************************************/
8 
9 #include "require_symbol.h"
10 
11 #include <util/symbol_table.h>
12 
14 
19  const symbol_tablet &symbol_table,
20  const irep_idt &symbol_identifier)
21 {
22  const symbolt *found_symbol = symbol_table.lookup(symbol_identifier);
23  INFO("Looking for symbol: " + id2string(symbol_identifier));
24  REQUIRE(found_symbol != nullptr);
25  return *found_symbol;
26 }
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition: dstring.h:38
const symbolt * lookup(const irep_idt &name) const
Find a symbol in the symbol table for read-only access.
The symbol table.
Definition: symbol_table.h:14
Symbol table entry.
Definition: symbol.h:28
const std::string & id2string(const irep_idt &d)
Definition: irep.h:40
const symbolt & require_symbol_exists(const symbol_tablet &symbol_table, const irep_idt &symbol_identifier)
Verify whether a given identifier is found in the symbol table and return it.
Helper functions for getting symbols from the symbol table during unit tests.
Author: Diffblue Ltd.