1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "msvc_helper.h"
16
17 #include "test.h"
18 #include "util.h"
19
TEST(EscapeForDepfileTest,SpacesInFilename)20 TEST(EscapeForDepfileTest, SpacesInFilename) {
21 ASSERT_EQ("sub\\some\\ sdk\\foo.h",
22 EscapeForDepfile("sub\\some sdk\\foo.h"));
23 }
24
TEST(MSVCHelperTest,EnvBlock)25 TEST(MSVCHelperTest, EnvBlock) {
26 char env_block[] = "foo=bar\0";
27 CLWrapper cl;
28 cl.SetEnvBlock(env_block);
29 string output;
30 cl.Run("cmd /c \"echo foo is %foo%", &output);
31 ASSERT_EQ("foo is bar\r\n", output);
32 }
33
TEST(MSVCHelperTest,NoReadOfStderr)34 TEST(MSVCHelperTest, NoReadOfStderr) {
35 CLWrapper cl;
36 string output;
37 cl.Run("cmd /c \"echo to stdout&& echo to stderr 1>&2", &output);
38 ASSERT_EQ("to stdout\r\n", output);
39 }
40