summaryrefslogtreecommitdiffstats
path: root/src/disk_interface_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* convert all time_t to a new TimeStamp typeEvan Martin2012-01-051-4/+4
|
* windows: handle ERROR_PATH_NOT_FOUNDEvan Martin2011-12-231-5/+6
| | | | From Frances <frances.buontempo@gmail.com>.
* windows: use GetFileAttributesEx instead of statEvan Martin2011-12-201-2/+7
| | | | | | | | | From a Hacker News comment: "Recent finding, that sped up our systems from 15->3sec on 300,000+ files filestamp check was to move from _stat to GetFileAttributesEx." I do recall reading that calls to stat() on Windows were one of the potential reasons Subversion is so slow on Windows...
* make Node::in_edge_ privateEvan Martin2011-12-071-8/+4
|
* make Node::dirty_ privateEvan Martin2011-12-071-6/+6
|
* merge FileStat into NodeEvan Martin2011-12-071-4/+4
| | | | | | The two were always one-to-one anyway. I started adding accessors to FileStat and then realized most users wanted them on Node and that forwarding them through was silly.
* disable the 'unused parameter' warningEvan Martin2011-12-051-3/+3
| | | | It was firing too often, and hadn't uncovered any bugs.
* Fix compilation warning in Ninja's test suite.Nicolas Despres2011-11-211-3/+3
|
* Split ninja_test.cc into state_test.cc and disk_interface_test.ccThiago Farina2011-09-111-0/+99
| | | | Signed-off-by: Thiago Farina <tfarina@chromium.org>
* Fix windows build by moving mkdtemp() implementation from ninja_test.cc to ↵Thiago Farina2011-09-081-0/+29
| | | | | | disk_interface_test.cc Signed-off-by: Thiago Farina <tfarina@chromium.org>
* Move DiskInterfaceTest into its own source file.Thiago Farina2011-09-071-0/+131
TEST=ninja_test --gtest_filter=DiskInterface* Signed-off-by: Thiago Farina <tfarina@chromium.org>