gohome1984 / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

Windows project fails to run tests if built under a directory with spaces in the name #354

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. check-out breakpad under e.g. c:\Documents and Settings
2. build the breakpad_client.sln in src/client/windows

What is the expected output? What do you see instead?
Excepted output is successful build and run of tests
Actual output is something like:
    No such program as C:\Documents

What version of the product are you using? On what operating system?
r437

Please provide any additional information below.

The fix is to add quotes to 
handler/exception_handler_test/exception_handler_test.vcproj's 
command lines, i.e. the two occurrences of
    CommandLine="$(OutDir)\$(ProjectName).exe"
should read
    CommandLine=""$(OutDir)\$(ProjectName).exe""

Original issue reported on code.google.com by eliot.miranda@gmail.com on 4 Dec 2009 at 10:58