gem5
v22.0.0.1
|
#include <gtest/gtest.h>
#include <initializer_list>
#include <iostream>
#include <vector>
#include "base/fiber.hh"
Go to the source code of this file.
Classes | |
class | SwitchingFiber |
class | LinkedFiber |
Functions | |
TEST (Fiber, Starting) | |
This test is checking if the "started" member has its expected value before and after the fiber runs. More... | |
SwitchingFiber | a ("A", { &b, &a, Fiber::primaryFiber(), &b, &c }) |
SwitchingFiber | b ("B", { &a, &c }) |
SwitchingFiber | c ("C", { &a, Fiber::primaryFiber(), Fiber::primaryFiber() }) |
TEST (Fiber, Switching) | |
TEST (Fiber, Linked) | |
Variables | |
SwitchingFiber | a |
SwitchingFiber | b |
SwitchingFiber | c |
std::vector< SwitchingFiber * >::iterator | expectedIt |
std::vector< SwitchingFiber * > | expected ({ &a, &b, &a, &a, &a, &b, &c, &a, &c, &c, &c }) |
int | currentIndex = 0 |
SwitchingFiber a | ( | "A" | , |
{ &b, &a, Fiber::primaryFiber(), &b, &c } | |||
) |
SwitchingFiber b | ( | "B" | , |
{ &a, &c } | |||
) |
SwitchingFiber c | ( | "C" | , |
{ &a, Fiber::primaryFiber(), Fiber::primaryFiber() } | |||
) |
TEST | ( | Fiber | , |
Linked | |||
) |
Definition at line 163 of file fiber.test.cc.
References currentIndex, and gem5::Fiber::run().
TEST | ( | Fiber | , |
Starting | |||
) |
This test is checking if the "started" member has its expected value before and after the fiber runs.
In the test an empty fiber is used since we are just interested on the _started member and nothing more.
Do nothing
Definition at line 55 of file fiber.test.cc.
References main(), and gem5::Fiber::primaryFiber().
TEST | ( | Fiber | , |
Switching | |||
) |
Definition at line 123 of file fiber.test.cc.
References a, b, c, expected, expectedIt, gem5::Fiber::finished(), and gem5::Fiber::run().
SwitchingFiber a("A", { &b, &a, Fiber::primaryFiber(), &b, &c }) |
Referenced by TEST().
SwitchingFiber b("B", { &a, &c }) |
Referenced by TEST().
SwitchingFiber c("C", { &a, Fiber::primaryFiber(), Fiber::primaryFiber() }) |
Referenced by TEST().
int currentIndex = 0 |
Definition at line 147 of file fiber.test.cc.
Referenced by LinkedFiber::main(), and TEST().
std::vector<SwitchingFiber *>::iterator expectedIt |
Definition at line 93 of file fiber.test.cc.
Referenced by SwitchingFiber::checkExpected(), and TEST().