• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
20 using namespace std;
21 
TEST(EscapeForDepfileTest,SpacesInFilename)22 TEST(EscapeForDepfileTest, SpacesInFilename) {
23   ASSERT_EQ("sub\\some\\ sdk\\foo.h",
24             EscapeForDepfile("sub\\some sdk\\foo.h"));
25 }
26 
TEST(MSVCHelperTest,EnvBlock)27 TEST(MSVCHelperTest, EnvBlock) {
28   char env_block[] = "foo=bar\0";
29   CLWrapper cl;
30   cl.SetEnvBlock(env_block);
31   string output;
32   cl.Run("cmd /c \"echo foo is %foo%", &output);
33   ASSERT_EQ("foo is bar\r\n", output);
34 }
35 
TEST(MSVCHelperTest,NoReadOfStderr)36 TEST(MSVCHelperTest, NoReadOfStderr) {
37   CLWrapper cl;
38   string output;
39   cl.Run("cmd /c \"echo to stdout&& echo to stderr 1>&2", &output);
40   ASSERT_EQ("to stdout\r\n", output);
41 }
42