cute example of a bug which only macoc unit test fails to compile
This commit is contained in:
parent
b20e6ae8a5
commit
4750aa2efa
|
@ -14,12 +14,17 @@ TEST(crankingNB2, nb2RealCrankingFromFile) {
|
|||
int indeces[1] = {0};
|
||||
|
||||
reader.open("tests/trigger/resources/nb2_rev-d-4.csv", indeces);
|
||||
WITH_ENGINE_TEST_HELPER (ET_HELLEN_NB2);
|
||||
WITH_ENGINE_TEST_HELPER (HELLEN_NB2);
|
||||
|
||||
while (eth.getTimeNowUs() < 3'000'000) {
|
||||
reader.readLine(ð);
|
||||
ASSERT_EQ(0, GET_RPM()) << "At line " << reader.lineIndex() << " time " << eth.getTimeNowUs();
|
||||
}
|
||||
|
||||
while (reader.haveMore()) {
|
||||
reader.processLine(ð);
|
||||
}
|
||||
|
||||
// ASSERT_EQ(243, GET_RPM()) << "At line " << reader.lineIndex() << " time " << eth.getTimeNowUs();
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue