commit 6e25116ee8dded8d5ebd22fc5d8ef922fae11265
parent 4352974e0a558f125ca5eda95b4d9e2792c6c296
Author: Johannes Lorenz <j.git@lorenz-ho.me>
Date: Sat, 19 Mar 2022 10:29:45 +0100
check-ports.rb: Use dummy MIDI engine
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Tests/check-ports.rb b/src/Tests/check-ports.rb
@@ -9,7 +9,7 @@ my_path=File.dirname(__FILE__)
# NOTE: If you add too much debug output to zyn, it will be blocked when writing into the pipe,
# leading to MiddleWare to not reply and to port-checker to fail.
# This script should be rewritten to keep reading (and printing) zyn's messages.
-Open3.popen3(my_path + "/../zynaddsubfx -O null --no-gui") do |stdin, stdout, stderr, wait_thr|
+Open3.popen3(my_path + "/../zynaddsubfx -O null -I null --no-gui") do |stdin, stdout, stderr, wait_thr|
pid = wait_thr[:pid]
while line=stderr.gets do
# print "line: " + line;