我有一个程序使用google test,并使用boost程序选项库来解析选项。 问题是谷歌测试也有它自己的选项解析器,所以我需要在给谷歌测试选项之前过滤掉。
例如,当我运行你好时,我使用如下
hello --option1=X --gtest_filter=Footest.*
- option1是我在将--gtest_filter选项传递给google测试之前使用的选项。
当我运行以下代码时,我得到了异常,因为--gtest_filter
不是我用于升级程序选项的选项。如何将那些提升程序选项无法识别的选项组合起来以提供gtest的输入?
#include <boost/program_options.hpp>
namespace po = boost::program_options;
#include <iostream>
#include <fstream>
#include <iterator>
using namespace std;
#include <gtest/gtest.h>
int main(int argc, char **argv) {
// filter out the options so that only the google related options survive
try {
int opt;
string config_file;
po::options_description generic("Generic options");
generic.add_options()
("option1,o", "print version string")
;
...
}
catch(exception& e) // *****************
{
cout << e.what() << "\n";
return 1;
}
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
答案 0 :(得分:2)
InitGoogleTest
将remove Google测试所知的选项,其余部分保留在argv
中。 argc
也会相应调整。只需在其他选项解析代码之前调用InitGoogleTest
。
答案 1 :(得分:1)
我在此页面中找到了忽略未知选项的选项 - http://www.boost.org/doc/libs/1_45_0/doc/html/program_options/howto.html#id2075428
store(po::command_line_parser(argc, argv).
options(cmdline_options).positional(p).allow_unregistered().run(), vm);