Fix TestTargetSymbolsAddCommand [getBuildArtifact refactor]

llvm-svn: 323086
This commit is contained in:
Pavel Labath 2018-01-22 09:55:30 +00:00
parent 8f52340766
commit 717937d586
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class TargetSymbolsAddCommand(TestBase):
# Tell LLDB that a.out has symbols for stripped.out
self.runCmd("target symbols add -s %s %s" %
exe, self.getBuildArtifact("a.out"))
(exe, self.getBuildArtifact("a.out")))
# Check that symbols are now loaded and main.c is in the output.
self.expect("frame select", substrs=['main.c'])