expectedCommand=`set "BAR=BAZ" && set "FOO=BAR" && set "PACKER_BUILDER_TYPE=iso" && set "PACKER_BUILD_NAME=vmware" && "c:/Windows/Temp/inlineScript.bat"`
// Should run the command without alteration
ifcomm.StartCmd.Command!=expectedCommand{
t.Fatalf("Expect command to be: %s, got: %s",expectedCommand,comm.StartCmd.Command)
expectedCommand:=`set "BAR=BAZ" && set "FOO=BAR" && set "PACKER_BUILDER_TYPE=footype" && set "PACKER_BUILD_NAME=foobuild" && "c:/Windows/Temp/script.bat"`
// Should run the command without alteration
ifcomm.StartCmd.Command!=expectedCommand{
t.Fatalf("Expect command to be %s NOT %s",expectedCommand,comm.StartCmd.Command)