以下代码是抛出 SIGSEGV 还是按预期工作取决于目标文件在 makefile 中出现的顺序(在我的例子中是 .pro)。我对仅以正确的顺序维护它们不是很有信心。是否对我的来源进行了简单的更改,从而消除了对目标文件正确顺序的依赖?
这些是源文件,归结为一个简短的示例。
dummy0.h
:
#ifndef DUMMY0_H
#define DUMMY0_H
#include <QObject>
class Dummy0 : public QObject
{
Q_OBJECT
public:
explicit Dummy0(QObject *parent = 0);
};
#endif // DUMMY0_H
dummy0.cpp
:
#include "dummy0.h"
#include "unittestclass.h"
Dummy0::Dummy0(QObject *parent) : QObject(parent) {}
ADD_TEST( Dummy0 )
顾名思义,未来还会有Dummy1
......Dummy<n>
unittestclass.h
:
#ifndef UNITTESTCLASS_H
#define UNITTESTCLASS_H
#include <QObject>
#include <QTest>
#include <QDebug>
#include <memory>
#include <list>
// see https://stackoverflow.com/questions/12194256/qt-how-to-organize-unit-test-with-more-than-one-class
namespace TestCollector {
class BaseClass { // see https://hackernoon.com/shared-static-variable-for-all-template-class-instances-eaed385f332b
public:
BaseClass() = default;
int listClasses( int argc, char *argv[] );
protected:
static std::list<std::shared_ptr<QObject>> testlist;
};
template <class T>
class UnitTestClass : public BaseClass {
public:
UnitTestClass() {
std::shared_ptr<QObject> ptr = std::make_shared<T>();
qDebug() << "pushing a" << ptr.get()->metaObject()->className();
qDebug() << "testlist size before:" << testlist.size() << "of" << testlist.max_size();
testlist.size(); // no SIGSEGV !?
testlist.push_back( ptr ); // SIGSEGV here when race condition
qDebug() << "testlist size after:" << testlist.size();
}
};
} // TestCollector
#define ADD_TEST(className) static TestCollector::UnitTestClass<className> test;
#endif // UNITTESTCLASS_H
unittestclass.cpp
:
#include "unittestclass.h"
namespace TestCollector {
std::list<std::shared_ptr<QObject>> BaseClass::testlist;
int BaseClass::listClasses( int argc, char *argv[] ) {
int result=0;
for( const auto c : testlist ) {
qDebug() << "got" << c.get()->metaObject()->className();
}
return result;
}
} // TestCollector
main.cpp
:
#include "unittestclass.h"
int main(int argc, char *argv[]) {
TestCollector::BaseClass base;
return base.listClasses( argc, argv );
}
当我在程序失败dummy0.cpp
之前有[注意:有趣的是,之前的行不会失败]。稍后出现时,一切都很好。这暗示了一个问题,即当目标文件的顺序不利时,可能会在初始化之前使用 testlist!?unittestclass.cpp
testlist.push_back(ptr)
testlist.size()
push_back
dummy0.cpp
我怎样才能避免依赖这个订单?
[我目前使用 c++11、QtCreator 3.5.1、g++ 5.4.0、GNU ld 2.26.1。]