Commit 62570ff8 authored by jmadill's avatar jmadill Committed by Commit bot

Fix broken path in GLES2 CTS.

AppendSwitch was casting all directories to lower case, causing the tests
to early-out and return as always passed even before they create the test
window.

BUG=408251

Review URL: https://codereview.chromium.org/500133005

Cr-Commit-Position: refs/heads/master@{#292413}
parent 2246d84a
......@@ -64,7 +64,7 @@ bool RunGLES2ConformTest(const char* path) {
"gles2_conform_test_windowless")));
CommandLine cmdline(program);
cmdline.AppendSwitch(std::string("-run=") + path);
cmdline.AppendArg(std::string("-run=") + path);
std::string output;
bool success = base::GetAppOutput(cmdline, &output);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment