filesystem_test.cc
Go to the documentation of this file.
1 // ======================================================================
2 //
3 // test getenv
4 //
5 // ======================================================================
6 
7 #include "cetlib/filesystem.h"
8 
9 #include <cstdlib>
10 
11 void
12 ensure(int which, bool claim)
13 {
14  if (not claim)
15  std::exit(which);
16 }
17 
18 int
20 {
21  ensure(1, !cet::file_exists("xyxxy"));
22 
23  return 0;
24 
25 } // main()
void ensure(int which, bool claim)
int main()
bool file_exists(std::string const &qualified_filename)
Definition: filesystem.cc:14