diff options
author | Tareq A. Siraj <tareq.a.siraj@intel.com> | 2013-09-20 18:21:59 +0000 |
---|---|---|
committer | Tareq A. Siraj <tareq.a.siraj@intel.com> | 2013-09-20 18:21:59 +0000 |
commit | f51ecf2ad068f1bcc55940dee8c66acf4a44ed60 (patch) | |
tree | dfc168baaf40d27458cf0b362f4502f161a4a06a /unittests/Support | |
parent | 4c332fa5a5a650cd779935d78b505f84cef4db69 (diff) | |
download | external_llvm-f51ecf2ad068f1bcc55940dee8c66acf4a44ed60.zip external_llvm-f51ecf2ad068f1bcc55940dee8c66acf4a44ed60.tar.gz external_llvm-f51ecf2ad068f1bcc55940dee8c66acf4a44ed60.tar.bz2 |
Fixed typo in CreateProcessTrailingSlash test
--gtest_filter was filtering an invalid name for the test.
Differential Revision: http://llvm-reviews.chandlerc.com/D1733
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191100 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Support')
-rw-r--r-- | unittests/Support/ProgramTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/ProgramTest.cpp b/unittests/Support/ProgramTest.cpp index 6852ca6..a57f60e 100644 --- a/unittests/Support/ProgramTest.cpp +++ b/unittests/Support/ProgramTest.cpp @@ -60,7 +60,7 @@ TEST(ProgramTest, CreateProcessTrailingSlash) { sys::fs::getMainExecutable(TestMainArgv0, &ProgramTestStringArg1); const char *argv[] = { my_exe.c_str(), - "--gtest_filter=ProgramTest.CreateProcessTrailingSlashChild", + "--gtest_filter=ProgramTest.CreateProcessTrailingSlash", "-program-test-string-arg1", "has\\\\ trailing\\", "-program-test-string-arg2", "has\\\\ trailing\\", 0 |