diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-05 08:47:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-05 08:57:24 +0200 |
commit | 46f7f0361af208209812cc499c44b7acd8faa8e7 (patch) | |
tree | 472551de420f82ffeea94922815710f5def3ca74 /tests | |
parent | b068b7caf525d854529c5dafdcaa965a5fafdd3a (diff) |
Change machine type enumeration values
Diffstat (limited to 'tests')
-rw-r--r-- | tests/manifest/machine.test | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/manifest/machine.test b/tests/manifest/machine.test index b775a79..cd50bd4 100644 --- a/tests/manifest/machine.test +++ b/tests/manifest/machine.test @@ -9,23 +9,23 @@ test.options += -m : Roundtrip the machine manifest. : { - : vm + : kvm : $* <<EOF >>EOF : 1 id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 name: windows_10-msvc_14 - type: vm + type: kvm summary: Windows 10 build 1607 with VC 14 update 3 EOF - : container + : nspawn : $* <<EOF >>EOF : 1 id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 name: windows_10-msvc_14 - type: container + type: nspawn summary: Windows 10 build 1607 with VC 14 update 3 EOF } @@ -36,7 +36,7 @@ $* <<EOI 2>'stdin:6:1: error: single machine manifest expected' == 1 : 1 id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 name: windows_10-msvc_14 -type: vm +type: kvm summary: Windows 10 build 1607 with VC 14 update 3 : EOI @@ -64,8 +64,8 @@ EOI : $* <<EOI 2>'stdin:3:1: error: machine type redefinition' == 1 : 1 - type: vm - type: vm + type: kvm + type: kvm EOI : summary @@ -124,7 +124,7 @@ EOI $* <<EOI 2>'stdin:5:1: error: no machine id specified' == 1 : 1 name: windows - type: vm + type: kvm summary: Windows EOI @@ -133,7 +133,7 @@ EOI $* <<EOI 2>'stdin:5:1: error: no machine name specified' == 1 : 1 id: 123 - type: vm + type: kvm summary: Windows EOI @@ -152,6 +152,6 @@ EOI : 1 id: 123 name: windows - type: vm + type: kvm EOI } |