4

我对设置 boost 测试库有点困惑。这是我的代码:

#include "stdafx.h"
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE pevUnitTest
#include <boost/test/unit_test.hpp>

BOOST_AUTO_TEST_CASE( TesterTest )
{
    BOOST_CHECK(true);
}

我的编译器生成了非常有用的错误消息:

1>MSVCRTD.lib(wcrtexe.obj) : error LNK2019: unresolved external symbol _wmain referenced in function ___tmainCRTStartup
1>C:\Users\Billy\Documents\Visual Studio 10\Projects\pevFind\Debug\pevUnitTest.exe : fatal error LNK1120: 1 unresolved externals

似乎 Boost::Test 库没有生成 main() 函数——我的印象是它在BOOST_TEST_MODULE定义时会这样做。但是......链接器错误仍在继续。

有任何想法吗?

比利3

编辑:这是我的代码来解决下面正确答案中描述的错误:

#include "stdafx.h"
#define BOOST_TEST_MODULE pevUnitTests
#ifndef _UNICODE
#define BOOST_TEST_MAIN
#endif
#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>

#ifdef _UNICODE

int _tmain(int argc, wchar_t * argv[])
{
    char ** utf8Lines;
    int returnValue;

    //Allocate enough pointers to hold the # of command items (+1 for a null line on the end)
    utf8Lines = new char* [argc + 1];

    //Put the null line on the end (Ansi stuff...)
    utf8Lines[argc] = new char[1];
    utf8Lines[argc][0] = NULL;

    //Convert commands into UTF8 for non wide character supporting boost library
    for(unsigned int idx = 0; idx < argc; idx++)
    {
        int convertedLength;
        convertedLength = WideCharToMultiByte(CP_UTF8, NULL, argv[idx], -1, NULL, NULL, NULL, NULL);
        if (convertedLength == 0)
            return GetLastError();
        utf8Lines[idx] = new char[convertedLength]; // WideCharToMultiByte handles null term issues
        WideCharToMultiByte(CP_UTF8, NULL, argv[idx], -1, utf8Lines[idx], convertedLength, NULL, NULL);
    }

    //From boost::test's main()
    returnValue = ::boost::unit_test::unit_test_main( &init_unit_test, argc, utf8Lines );
    //End from boost::test's main()

    //Clean up our mess
    for(unsigned int idx = 0; idx < argc + 1; idx++)
        delete [] utf8Lines[idx];
    delete [] utf8Lines;

    return returnValue;
}

#endif

BOOST_AUTO_TEST_CASE( TesterTest )
{
    BOOST_CHECK(false);
}

希望这对某人有帮助。

比利3

4

1 回答 1

4

我认为问题在于您使用的是 VC10 测试版。

它有一个有趣的小错误,当启用 Unicode 时,它​​要求入口点是wmain,而不是main. (旧版本允许您在这些情况下同时使用两者)wmainmain

当然,这将在下一个测试版中得到解决,但在那之前,这是一个问题。:)

您可以降级到 VC9、禁用 Unicode,或者尝试main在项目属性中手动设置入口点。

另一件可能有效的事情是,如果您定义自己的 wmain 存根,它调用 main。我很确定这在技术上是未定义的行为,但作为未发布编译器中编译器错误的解决方法,它可能会奏效。

于 2009-08-09T14:38:21.500 回答