diff options
author | Markus Kauppila <markus.kauppila@gmail.com> | 2011-08-14 21:29:00 +0300 |
---|---|---|
committer | Markus Kauppila <markus.kauppila@gmail.com> | 2011-08-14 21:29:00 +0300 |
commit | ef98008e43921313097b186ff7b56c181f7382f1 (patch) | |
tree | 5c5954af8d0cfc3ceacc5ebbca2e4458dfd8ebea /test/test-automation | |
parent | 1ae920044cac3e058e9f8f3a9dd738850ff4adaf (diff) |
Clean up.
Diffstat (limited to 'test/test-automation')
-rw-r--r-- | test/test-automation/src/runner/runner.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/test-automation/src/runner/runner.c b/test/test-automation/src/runner/runner.c index 967be532..2489e108 100644 --- a/test/test-automation/src/runner/runner.c +++ b/test/test-automation/src/runner/runner.c @@ -1207,17 +1207,11 @@ ParseOptions(int argc, char *argv[]) exit(1); } - // \todo User given string should be handled as a string - // representing a hex digit - //userExecKey = atoi(execKeyString); - int ret = sscanf(execKeyString, "%llx", &userExecKey); if(ret != 1) { fprintf(stderr, "Error: Failed to parse exec-key option"); exit(1); } - - printf("%Lx", userExecKey); } else if(SDL_strcmp(arg, "--test") == 0 || SDL_strcmp(arg, "-t") == 0) { only_selected_test = 1; |