Skip to content
Snippets Groups Projects
Commit 371bd3dc authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

test/connector_c: fixed path to the connector_c/tt for out-of-

source builds.
parent 528e4041
No related branches found
No related tags found
No related merge requests found
import subprocess
import sys
import os
p = subprocess.Popen([ "connector_c/tt" ], stdout=subprocess.PIPE)
p = subprocess.Popen([ os.path.join(builddir, "test/connector_c/tt") ],
stdout=subprocess.PIPE)
p.wait()
for line in p.stdout.readlines():
sys.stdout.write(line)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment