summaryrefslogtreecommitdiff
path: root/test/test-automation
diff options
context:
space:
mode:
authorMarkus Kauppila <markus.kauppila@gmail.com>2011-08-14 21:29:00 +0300
committerMarkus Kauppila <markus.kauppila@gmail.com>2011-08-14 21:29:00 +0300
commitef98008e43921313097b186ff7b56c181f7382f1 (patch)
tree5c5954af8d0cfc3ceacc5ebbca2e4458dfd8ebea /test/test-automation
parent1ae920044cac3e058e9f8f3a9dd738850ff4adaf (diff)
Clean up.
Diffstat (limited to 'test/test-automation')
-rw-r--r--test/test-automation/src/runner/runner.c6
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;