| 111 | } |
| 112 | |
| 113 | static void SprintRunDirectory( IO::Filename & rundir, const char * batchdir, u32 run_id ) |
| 114 | { |
| 115 | char filename[64]; |
| 116 | sprintf( filename, "run%04d", run_id ); |
| 117 | IO::Path::Combine(rundir, batchdir, filename); |
| 118 | } |
| 119 | |
| 120 | static bool MakeRunDirectory( IO::Filename & rundir, const char * batchdir ) |
| 121 | { |
no test coverage detected