diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 01:15:48 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 01:15:48 -0700 |
commit | 03d366b695e6c65c7b96d127f1455be9a625dc9f (patch) | |
tree | d90079fde4742e278fc0bce26f5ffc0e4e2f7fb8 /cpp | |
parent | 286d762019a217231f5969e03b4a519a2eab447e (diff) | |
download | mu-03d366b695e6c65c7b96d127f1455be9a625dc9f.tar.gz |
1040
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/031scenario | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/031scenario b/cpp/031scenario index 2b665449..693f9bf8 100644 --- a/cpp/031scenario +++ b/cpp/031scenario @@ -9,9 +9,9 @@ struct scenario { vector<scenario> Scenarios; :(before "End Tests") -//? cout << "AAA\n"; //? 1 +time_t mu_time; time(&mu_time); +cerr << "\nMu tests: " << ctime(&mu_time); for (size_t i = 0; i < Scenarios.size(); ++i) { -//? cout << "BBB\n"; //? 1 setup(); Trace_stream = new trace_stream; //? Trace_stream->dump_layer = "all"; //? 1 |