Ignore:
Timestamp:
13/03/2008 21:48:54 (4 years ago)
Author:
chris
Message:

Run daemons quietly (with -K) in tests under Windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/infrastructure/buildenv-testmain-template.cpp

    r2098 r2111  
    5858int first_fail_line; 
    5959std::string first_fail_file; 
    60 std::string bbackupd_args, bbstored_args, bbackupquery_args, test_args; 
     60 
     61#ifdef WIN32 
     62        #define QUIET_PROCESS "-K" 
     63#else 
     64        #define QUIET_PROCESS "" 
     65#endif 
     66 
     67std::string bbackupd_args = QUIET_PROCESS, 
     68        bbstored_args = QUIET_PROCESS, 
     69        bbackupquery_args, 
     70        test_args; 
    6171 
    6272int filedes_open_at_beginning = -1; 
Note: See TracChangeset for help on using the changeset viewer.