summary refs log tree commit diff
path: root/host/start-vmm/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'host/start-vmm/lib.rs')
-rw-r--r--host/start-vmm/lib.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/host/start-vmm/lib.rs b/host/start-vmm/lib.rs
index f927bf2..9c2b4b6 100644
--- a/host/start-vmm/lib.rs
+++ b/host/start-vmm/lib.rs
@@ -207,10 +207,6 @@ pub fn create_vm(dir: &Path, config_root: &Path) -> Result<(), String> {
         return Err("not running from a VM service directory".to_string());
     }
 
-    if vm_name.contains(',') {
-        return Err(format!("VM name may not contain a comma: {:?}", vm_name));
-    }
-
     let vm_name = &vm_name[3..];
     let config = vm_config(vm_name, config_root)?;
 
@@ -232,14 +228,3 @@ pub fn vm_command(api_socket_fd: RawFd) -> Result<Command, String> {
 
     Ok(command)
 }
-
-#[cfg(test)]
-mod tests {
-    use super::*;
-
-    #[test]
-    fn test_vm_name_comma() {
-        let e = create_vm(Path::new("/vm-,"), Path::new("/")).unwrap_err();
-        assert!(e.contains("comma"), "unexpected error: {:?}", e);
-    }
-}