diff options
author | Kalle Raita <kraita@google.com> | 2015-02-17 15:13:50 -0800 |
---|---|---|
committer | Kalle Raita <kraita@google.com> | 2015-02-17 15:13:50 -0800 |
commit | 8bb5a3652dcb09fdd24d729b38e18d98d72f10bc (patch) | |
tree | 4631c254df7900ee00f7986a65614bc6ca2ddca3 /executor | |
parent | 80f9d093fa90e0f7f271774d60c11e1feb8d28d7 (diff) | |
download | VK-GL-CTS-8bb5a3652dcb09fdd24d729b38e18d98d72f10bc.tar.gz VK-GL-CTS-8bb5a3652dcb09fdd24d729b38e18d98d72f10bc.tar.bz2 VK-GL-CTS-8bb5a3652dcb09fdd24d729b38e18d98d72f10bc.zip |
Add default for Executor continue file.
Change-Id: If2006206020bd8e4c9f0ed7432f90c941466d453
Diffstat (limited to 'executor')
-rw-r--r-- | executor/tools/xeCommandLineExecutor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/tools/xeCommandLineExecutor.cpp b/executor/tools/xeCommandLineExecutor.cpp index de8f08280..730dfc3a5 100644 --- a/executor/tools/xeCommandLineExecutor.cpp +++ b/executor/tools/xeCommandLineExecutor.cpp @@ -87,7 +87,7 @@ void registerOptions (de::cmdline::Parser& parser) << Option<CaseListDir> ("cd", "caselistdir", "Path to test case XML files", ".") << Option<TestSet> ("t", "testset", "Test set", parseCommaSeparatedList, "") << Option<ExcludeSet> ("e", "exclude", "Comma-separated list of exclude filters", parseCommaSeparatedList, "") - << Option<ContinueFile> (DE_NULL, "continue", "Continue execution by initializing results from existing test log") + << Option<ContinueFile> (DE_NULL, "continue", "Continue execution by initializing results from existing test log", "") << Option<TestLogFile> ("o", "out", "Output test log filename", "") << Option<InfoLogFile> ("i", "info", "Output info log filename", "") << Option<Summary> (DE_NULL, "summary", "Print summary at the end", s_yesNo, "yes") |