Changeset 1570
- Timestamp:
- Oct 13, 2008, 8:34:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Suite.cc
r1516 r1570 2 2 3 3 /* 4 Copyright (C) 2008 Peter Johansson4 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 5 5 6 6 This file is part of the yat library, http://dev.thep.lu.se/yat … … 35 35 36 36 Suite::Suite(int argc, char* argv[]) 37 : known_issues_(0), ok_(true)37 : dev_null_(NULL), known_issues_(0), ok_(true) 38 38 { 39 dev_null_ = new std::ofstream("/dev/null");40 39 char* buffer=std::getenv("YAT_TEST_VERBOSE"); 41 40 … … 45 44 else { 46 45 verbose_ = false; 46 dev_null_ = new std::ofstream("/dev/null"); 47 47 if (argc>1){ 48 48 std::stringstream ss(argv[0]);
Note: See TracChangeset
for help on using the changeset viewer.