2
0
mirror of git://github.com/lxc/lxc synced 2025-08-31 15:09:28 +00:00

api_test.py: Remove workarounds for API bugs

The script used to contain a workaround for back when create()
wouldn't properly flush the config and reload it.
As these issues have now been fixed, these workarounds can be removed.

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber
2012-09-13 10:31:24 -04:00
parent abbe2ead95
commit 5a339bbb87

View File

@@ -53,7 +53,6 @@ assert(container.state == "STOPPED")
## Create a rootfs
print("Creating rootfs using '%s'" % LXC_TEMPLATE)
container.create(LXC_TEMPLATE)
container.load_config() # FIXME: workaround for get_config_item segfault
assert(container.defined == True)
assert(container.name == CONTAINER_NAME
@@ -74,7 +73,6 @@ assert(capdrop == container.get_config_item("lxc.cap.drop"))
## Test the networking
print("Testing the networking")
container.network.remove(0) # FIXME: workaround for get_config_item segfault
# A few basic checks of the current state
assert("name" in container.get_keys("lxc.network.0"))
@@ -142,8 +140,6 @@ assert(container.state == "STOPPED")
print("Cloning the container")
clone = lxc.Container(CLONE_NAME)
clone.clone(container)
clone.load_config() # FIXME: workaround for get_config_item segfault
clone.network.remove(0) # FIXME: workaround for get_config_item segfault
clone.start()
clone.stop()
clone.destroy()