blob: 2eff6a02095e57b4e5f6e76bd38049d42edf21ee [file] [log] [blame]
Deepak Kodihalli739e9252017-03-05 23:23:50 -06001#include <iostream>
Deepak Kodihalli15331102017-03-09 23:50:43 -06002#include <sdbusplus/exception.hpp>
Deepak Kodihalli739e9252017-03-05 23:23:50 -06003#include <phosphor-logging/elog.hpp>
4#include <phosphor-logging/elog-errors.hpp>
5#include "elog_meta.hpp"
6
7using namespace phosphor::logging;
8
9int main(int argc, char** argv)
10{
11 if(2 != argc)
12 {
13 std::cerr << "usage: callout-test <sysfs path>" << std::endl;
14 return -1;
15 }
16
17 using namespace example::xyz::openbmc_project::Example::Elog;
18 try
19 {
20 elog<TestCallout>(
21 TestCallout::DEV_ADDR(0xDEADEAD),
22 TestCallout::CALLOUT_ERRNO_TEST(0),
23 TestCallout::CALLOUT_DEVICE_PATH_TEST(argv[1]));
24 }
Deepak Kodihalli15331102017-03-09 23:50:43 -060025 catch (TestCallout& e)
Deepak Kodihalli739e9252017-03-05 23:23:50 -060026 {
27 commit(e.name());
28 }
29
30 return 0;
31}
32
33