From 8727c9b91dc9ce682f1c1cb612a8b4a852f2cbda Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 2 Jul 2014 12:18:15 +0200 Subject: [PATCH] Revert "tests: Fix path to `extcmd_test'" This reverts commit 4054bcf1011c36f3316292bb4fd892a987ab9ca7. The changed path to `extcmd_test' is actually invalid because `extcmd_test' is located beneath `/modules/test/bin'. I erroneously assumed the latter as invalid because the compiled `extcmd_test' was missing. --- .../php/library/Icinga/Protocol/Commandpipe/CommandPipeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/php/library/Icinga/Protocol/Commandpipe/CommandPipeTest.php b/test/php/library/Icinga/Protocol/Commandpipe/CommandPipeTest.php index d7ce01fb0..0ec9a4da6 100644 --- a/test/php/library/Icinga/Protocol/Commandpipe/CommandPipeTest.php +++ b/test/php/library/Icinga/Protocol/Commandpipe/CommandPipeTest.php @@ -19,7 +19,7 @@ use Icinga\Module\Monitoring\Command\ScheduleCheckCommand; use Icinga\Module\Monitoring\Command\SubmitPassiveCheckresultCommand; if (!defined('EXTCMD_TEST_BIN')) { - define('EXTCMD_TEST_BIN', BaseTestCase::$testDir . '/bin/extcmd_test'); + define('EXTCMD_TEST_BIN', './bin/extcmd_test'); } /**