Skip to content
Snippets Groups Projects
Commit b13a2c17 authored by Bob Lantz's avatar Bob Lantz
Browse files

Removed test for reference kernel implementation, for now at least. ;-(

parent 2f40c856
No related branches found
No related tags found
No related merge requests found
......@@ -6,14 +6,15 @@
import unittest
from mininet.net import init, Mininet
from mininet.node import KernelSwitch, Host, Controller, ControllerParams
from mininet.node import Host, Controller, ControllerParams
# from mininet.node import KernelSwitch
from mininet.node import UserSwitch, OVSKernelSwitch
from mininet.topo import SingleSwitchTopo, LinearTopo
# temporary, until user-space side is tested
SWITCHES = { 'kernel': KernelSwitch,
'user': UserSwitch,
'ovsk': OVSKernelSwitch }
SWITCHES = { 'user': UserSwitch,
'ovsk': OVSKernelSwitch,
# 'kernel': KernelSwitch
}
class testSingleSwitch( unittest.TestCase ):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment