原始问题使事情变得复杂,实际上问题要简单得多。
我尝试简单地运行现有的单元测试而不添加任何东西。在我运行的单元测试inet/tests/unit
文件夹中:
./runtest
得到这个:
andreatino@andreatino-virtual-machine:~/Git/inet/tests/unit$ ./runtest
opp_test: extracting files from *.test files into work...
Creating Makefile in /home/andreatino/Git/inet/tests/unit/work...
Makefile created, running "make depend" to add dependencies...
Creating dependencies...
intervaltree/test.cc
In file included from /home/andreatino/Downloads/omnetpp-5.0/include/platdep/sockets.h:2:0,
from ../../../src/inet/common/precompiled.h:19,
from ../../../src/inet/common/INETDefs.h:22,
from ../../../src/inet/common/IntervalTree.h:42,
from intervaltree/test.cc:4:
/home/andreatino/Downloads/omnetpp-5.0/include/omnetpp/platdep/sockets.h:33:3: error: #error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
# error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
^
Makefile:122: recipe for target 'out/gcc-debug//intervaltree/test.o' failed
make: *** [out/gcc-debug//intervaltree/test.o] Error 1
发生了什么事?
注意您可以避免实际阅读原始问题。除非你对某些人在这个问题上获得更多信息感到好奇。
我正在尝试在INet Framework中运行自定义测试,我正在为我正在编写的组件添加自定义测试。这些文件是this commit的一部分。
我在inet/tests/unit
中添加了一个测试,请参阅文件结构的提交。
测试文件:
%description:
Test MacUtils in Ieee80211ac:
- Length of MU bundles is correctly computed.
%includes:
#include "ieee80211ac/MacUtilsTest.h"
%global:
using namespace ::inet::tcp::test::ieee80211ac;
%activity:
MacUtilsTest test = MacUtilsTest();
test.testMaxLengthReturned();
EV << ".\n";
%contains: stdout
l=7
.
包含的标题:
#ifndef __INET_IEEE80211AC_MACUTILSTEST_H
#define __INET_IEEE80211AC_MACUTILSTEST_H
#include "inet/linklayer/ieee80211/mac/IMacParameters.h"
#include "inet/linklayer/ieee80211/mac/IRateSelection.h"
#include "inet/linklayer/ieee80211/mac/AccessCategory.h"
#include "inet/linklayer/ieee80211/mac/IRateControl.h"
#include "inet/linklayer/ieee80211/mac/Ieee80211Frame_m.h"
using namespace inet::ieee80211ac;
namespace inet {
namespace ieee80211ac {
class MacUtils;
class Ieee80211acMUBundleFrame;
}
namespace test {
namespace ieee80211ac {
/**
* Tests focusing on utils on bundle messages.
*/
class MacUtilsTest
{
protected:
class DummyMacParameters : public inet::ieee80211::IMacParameters {
public:
virtual const MACAddress& getAddress() const override {}
virtual bool isEdcaEnabled() const override {return false;}
virtual simtime_t getSlotTime() const override {return 0;}
virtual simtime_t getSifsTime() const override {return 0;}
virtual simtime_t getAifsTime(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual simtime_t getEifsTime(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual simtime_t getPifsTime() const override {return 0;}
virtual simtime_t getRifsTime() const override {return 0;}
virtual int getCwMin(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual int getCwMax(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual int getCwMulticast(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual simtime_t getTxopLimit(inet::ieee80211::AccessCategory ac) const override {return 0;}
virtual int getShortRetryLimit() const override {return 0;}
virtual int getLongRetryLimit() const override {return 0;}
virtual int getRtsThreshold() const override {return 0;}
virtual simtime_t getPhyRxStartDelay() const override {return 0;}
virtual bool getUseFullAckTimeout() const override {return false;}
};
class DummyRateSelection : public inet::ieee80211::IRateSelection {
public:
virtual void setRateControl(inet::ieee80211::IRateControl *rateControl) override {}
virtual const IIeee80211Mode *getSlowestMandatoryMode() override {return nullptr;}
virtual const IIeee80211Mode *getModeForUnicastDataOrMgmtFrame(
inet::ieee80211::Ieee80211DataOrMgmtFrame *frame) override {return nullptr;}
virtual const IIeee80211Mode *getModeForMulticastDataOrMgmtFrame(
inet::ieee80211::Ieee80211DataOrMgmtFrame *frame) override {return nullptr;}
virtual const IIeee80211Mode *getModeForControlFrame(
inet::ieee80211::Ieee80211Frame *controlFrame) override {return nullptr;}
virtual const IIeee80211Mode *getResponseControlFrameMode() override {return nullptr;}
};
protected:
DummyMacParameters *macParameters = nullptr;
DummyRateSelection *rateSelection = nullptr;
MacUtils *utils = nullptr;
Ieee80211acMUBundleFrame *bundleFrame = nullptr;
protected:
virtual void initialize();
public:
MacUtilsTest();
virtual ~MacUtilsTest();
public:
void testMaxLengthReturned();
};
} // namespace ieee80211ac
} // namespace test
} // namespace inet
#endif
并实施:
#include "MacUtilsTest.h"
#include "inet/linklayer/ieee80211ac/mac/MacUtils.h"
#include "inet/linklayer/ieee80211/mac/MacUtils.h"
#include "inet/linklayer/ieee80211ac/mac/Ieee80211acFrame_m.h"
using namespace inet::ieee80211ac;
namespace inet {
namespace test {
namespace ieee80211ac {
MacUtilsTest::MacUtilsTest()
{
this->initialize();
}
MacUtilsTest::~MacUtilsTest()
{
delete this->macParameters;
delete this->rateSelection;
delete this->utils;
for (unsigned int i = 0, l = this->bundleFrame->getSingleFramesArraySize(); i < l; i++)
delete this->bundleFrame->getSingleFrames(i);
delete this->bundleFrame;
}
void MacUtilsTest::initialize()
{
this->macParameters = new MacUtilsTest::DummyMacParameters();
this->rateSelection = new MacUtilsTest::DummyRateSelection();
this->utils = new inet::ieee80211ac::MacUtils(this->macParameters, this->rateSelection);
this->bundleFrame = new Ieee80211acMUBundleFrame("MU Bundle");
Ieee80211acDataFrame* data1 = new Ieee80211acDataFrame("Data-1");
data1->setByteLength(3);
Ieee80211acDataFrame* data2 = new Ieee80211acDataFrame("Data-2");
data2->setByteLength(6);
Ieee80211acDataFrame* data3 = new Ieee80211acDataFrame("Data-3");
data3->setByteLength(7);
this->bundleFrame->setSingleFramesArraySize(3);
this->bundleFrame->setSingleFrames(0, *data1);
this->bundleFrame->setSingleFrames(0, *data2);
this->bundleFrame->setSingleFrames(0, *data3);
}
void MacUtilsTest::testMaxLengthReturned()
{
int64_t length = this->utils->getMUBundleByteLength(this->bundleFrame);
EV << "l=" << length << endl;
}
} // namespace ieee80211ac
} // namespace test
} // namespace inet
我在这里添加它们只是为了这个问题,但在我链接的提交中,您可以获得有关这些文件的更多信息。
我尝试在./runtest
文件夹中运行unit
并获取此信息:
andreatino@andreatino-virtual-machine:~/Git/inet/tests/unit$ ./runtest
opp_test: extracting files from *.test files into work...
Creating Makefile in /home/andreatino/Git/inet/tests/unit/work...
Makefile created, running "make depend" to add dependencies...
Creating dependencies...
IEEE80211ac_MacUtils_MUBundleLength/test.cc
In file included from /home/andreatino/Downloads/omnetpp-5.0/include/platdep/sockets.h:2:0,
from ../../../src/inet/common/precompiled.h:19,
from ../../../src/inet/common/INETDefs.h:22,
from ../../../src/inet/linklayer/ieee80211/mac/AccessCategory.h:23,
from ../../../src/inet/linklayer/ieee80211/mac/IMacParameters.h:23,
from ./lib/ieee80211ac/MacUtilsTest.h:4,
from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:
/home/andreatino/Downloads/omnetpp-5.0/include/omnetpp/platdep/sockets.h:33:3: error: #error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
# error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
^
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:10:23: error: ‘ieee80211ac’ is not a namespace-name
using namespace inet::ieee80211ac;
^
./lib/ieee80211ac/MacUtilsTest.h:10:34: error: expected namespace-name before ‘;’ token
using namespace inet::ieee80211ac;
^
./lib/ieee80211ac/MacUtilsTest.h:65:9: error: ‘MacUtils’ does not name a type
MacUtils *utils = nullptr;
^
./lib/ieee80211ac/MacUtilsTest.h:66:9: error: ‘Ieee80211acMUBundleFrame’ does not name a type
Ieee80211acMUBundleFrame *bundleFrame = nullptr;
^
./lib/ieee80211ac/MacUtilsTest.h: In member function ‘virtual const inet::MACAddress& inet::test::ieee80211ac::MacUtilsTest::DummyMacParameters::getAddress() const’:
./lib/ieee80211ac/MacUtilsTest.h:30:72: warning: no return statement in function returning non-void [-Wreturn-type]
virtual const MACAddress& getAddress() const override {}
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc: At global scope:
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:25: error: ‘inet::tcp’ has not been declared
using namespace ::inet::tcp::test::ieee80211ac;
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:36: error: ‘ieee80211ac’ is not a namespace-name
using namespace ::inet::tcp::test::ieee80211ac;
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:47: error: expected namespace-name before ‘;’ token
using namespace ::inet::tcp::test::ieee80211ac;
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc: In member function ‘virtual void IEEE80211ac_MacUtils_MUBundleLength::Test::activity()’:
IEEE80211ac_MacUtils_MUBundleLength/test.cc:28:1: error: ‘MacUtilsTest’ was not declared in this scope
MacUtilsTest test = MacUtilsTest();
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:28:1: note: suggested alternative:
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:25:7: note: ‘inet::test::ieee80211ac::MacUtilsTest’
class MacUtilsTest
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:30:1: error: ‘test’ was not declared in this scope
test.testMaxLengthReturned();
^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:30:1: note: suggested alternative:
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:19:16: note: ‘inet::test’
namespace test {
^
Makefile:123: recipe for target 'out/gcc-debug//IEEE80211ac_MacUtils_MUBundleLength/test.o' failed
make: *** [out/gcc-debug//IEEE80211ac_MacUtils_MUBundleLength/test.o] Error 1
我不明白我做错了什么......甚至在这里发生了什么......
答案 0 :(得分:1)
从OMNeT ++ 4.2开始<platdep/sockets.h>
必须在更改日志中提及<omnetpp.h>
之前:
在inet中,他们通过在以下提交中调整src/makefrag
来确保正确的顺序:
https://github.com/inet-framework/inet/commit/d9abbd1b4df5b9efcfb7a7f58e8f2223f4a91a33
因此,您必须使用以下代码在与makefrag
相同的文件夹中添加Makefile
文件:
PRECOMPILED_HEADER=<path-to-inet>/src/inet/common/precompiled.h
CFLAGS += -include $(PRECOMPILED_HEADER)
考虑用您的路径替换<path-to-inet>
,例如../../
更新: OMNeT ++ 5.1预览3强调的更改日志,问题已解决:
Ordering of 'platdep/sockets.h' and 'omnetpp.h' is no longer important. It is recommended to include 'omnetpp.h' first.