remove dependence of TestGdbRemoteExitCode.py on parent directory source
authorTodd Fiala <todd.fiala@gmail.com>
Mon, 5 Sep 2016 22:03:02 +0000 (22:03 +0000)
committerTodd Fiala <todd.fiala@gmail.com>
Mon, 5 Sep 2016 22:03:02 +0000 (22:03 +0000)
commit7ed76d275fc442a2bf9b7442920e057c7ca924aa
treee481ca749bbd7bd1008f0c1a8a5eb19f52ce2b5a
parentf245f562178d357dffcb399bbc644b8f7646df11
remove dependence of TestGdbRemoteExitCode.py on parent directory source

As Pavel pointed out in a comment on llvm.org/pr30271, the VPATH I was
using here to eliminate duplication of a .cpp file had a side effect of
attempting to pull in a .o/.obj file from that same parent dir, where
other tests can be running in parallel.  This is no good.

For now, I have removed the VPATH, which should address
llvm.org/pr30271.  I have also removed the XFAIL.

llvm-svn: 280675
lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/Makefile
lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/TestGdbRemoteExitCode.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/exit-code/main.cpp [new file with mode: 0644]