]> git.notmuchmail.org Git - apitrace/commitdiff
Support 'apitrace diff-images' on Windows.
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Tue, 29 Nov 2011 11:01:05 +0000 (11:01 +0000)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Tue, 29 Nov 2011 11:01:05 +0000 (11:01 +0000)
cli/cli_diff_images.cpp
common/trace_resource.cpp

index 3b5507a7cc4202da012f860e563535786466574f..42aaaff071d6927d73c3c0c36bb3e55e3f5fc222 100644 (file)
@@ -30,6 +30,7 @@
 
 #include "cli.hpp"
 #include "os_string.hpp"
+#include "os_process.hpp"
 #include "trace_resource.hpp"
 
 static const char *synopsis = "Identify differences between two image dumps.";
@@ -43,48 +44,42 @@ find_command(void)
 static void
 usage(void)
 {
-    char *args[3];
-
     os::String command = find_command();
+    if (!command.length()) {
+        exit(1);
+    }
 
+    char *args[3];
     args[0] = (char *) command.str();
     args[1] = (char *) "--help";
     args[2] = NULL;
 
-#ifdef _WIN32
-    std::cerr << "The 'apitrace diff-images' command is not yet supported on this O/S.\n";
-#else
-    execv(command.str(), args);
-#endif
-
-    std::cerr << "Error: Failed to execute " << args[0] << "\n";
+    os::execute(args);
 }
 
 static int
 command(int argc, char *argv[])
 {
     int i;
-    char **args = new char* [argc+2];
+    int ret;
 
     os::String command = find_command();
+    if (!command.length()) {
+        return 1;
+    }
 
+    char **args = new char* [argc + 2];
     args[0] = (char *) command.str();
-
     for (i = 0; i < argc; i++) {
-        args[i+1] = argv[i];
+        args[i + 1] = argv[i];
     }
+    args[i + 1] = NULL;
 
-    args[i+1] = NULL;
-
-#ifdef _WIN32
-    std::cerr << "The 'apitrace diff-images' command is not yet supported on this O/S.\n";
-#else
-    execv(command.str(), args);
-#endif
+    ret = os::execute(args);
 
-    std::cerr << "Error: Failed to execute " << args[0] << "\n";
+    delete [] args;
 
-    return 1;
+    return ret;
 }
 
 const Command diff_images_command = {
index 659fc0594085a2baf1ce13dcf36ee3cf7596cfde..85c8bee9a0fbe4a347ea7fbe287253523119749d 100644 (file)
@@ -105,7 +105,7 @@ findScript(const char *name)
     }
 #endif
 
-    std::cerr << "error: cannot find " << name << "script\n";
+    std::cerr << "error: cannot find " << name << " script\n";
 
     return "";
 }