aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test/script/runner/driver.cxx')
-rw-r--r--tests/test/script/runner/driver.cxx15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test/script/runner/driver.cxx b/tests/test/script/runner/driver.cxx
index fdada73..10d5857 100644
--- a/tests/test/script/runner/driver.cxx
+++ b/tests/test/script/runner/driver.cxx
@@ -10,12 +10,18 @@
#include <iostream>
#include <exception>
+#include <butl/path>
+#include <butl/fdstream>
+#include <butl/filesystem>
+
using namespace std;
+using namespace butl;
int
main (int argc, char* argv[])
{
// Usage: driver [-i <int>] [-s <int>] (-o <string>)* (-e <string>)*
+ // (-f <file>)* (-d <dir>)*
//
int status (256);
int ifd (3);
@@ -72,6 +78,15 @@ main (int argc, char* argv[])
status = toi (v);
assert (status >= 0 && status < 256);
}
+ else if (o == "-f")
+ {
+ ofdstream os (v);
+ os.close ();
+ }
+ else if (o == "-d")
+ {
+ try_mkdir_p (dir_path (v));
+ }
else
assert (false);
}