From 66c2532a5a4d494863396e318fd2b31c5fdea05d Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Wed, 15 Jan 2020 05:00:48 +0400 Subject: [PATCH] Fixed LD_PRELOAD --- tests/CallTester.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CallTester.php b/tests/CallTester.php index ede9587..eff25cf 100644 --- a/tests/CallTester.php +++ b/tests/CallTester.php @@ -337,7 +337,7 @@ class CallTester { $callerPreprocessedPath = "{$preprocessedDir}{$this->libraryVersion}_{$fileNameCaller}_{$name}_{$iteration}.pcm"; $callerOutPath = "{$outDir}{$this->libraryVersion}_{$fileNameCallee}_{$name}_{$iteration}.pcm"; - $callerCommand = "{$ldPreload} {$netnsPrefix} bin/tgvoipcall {$ipPort} {$callerTag} -k {$key} -i {$fileCaller} -p {$callerPreprocessedPath} -o {$callerOutPath} -c {$configPath} -r caller {$netOption} > {$callerOutPath}.log 2>&1"; + $callerCommand = "{$netnsPrefix} {$ldPreload} bin/tgvoipcall {$ipPort} {$callerTag} -k {$key} -i {$fileCaller} -p {$callerPreprocessedPath} -o {$callerOutPath} -c {$configPath} -r caller {$netOption} > {$callerOutPath}.log 2>&1"; $calleePreprocessedPath = "{$preprocessedDir}{$this->libraryVersion}_{$fileNameCallee}_{$name}_{$iteration}.pcm"; $calleeOutPath = "{$outDir}{$this->libraryVersion}_{$fileNameCaller}_{$name}_{$iteration}.pcm";