]> arthur.barton.de Git - bup.git/blobdiff - t/echo-argv-bytes
configure: test for functional readline more carefully
[bup.git] / t / echo-argv-bytes
index 66c5c6361cc122c70a8670957e04601e1b6245d9..5347b5aef1df0a9b71b8e0b6862a82d00fa7d9c4 100755 (executable)
@@ -8,7 +8,7 @@ for arg in "$@"; do
     shift
     arg_i=$((arg_i + 1))
 done
-bup_python="$(dirname "$0")/../lib/cmd/bup-python" || exit $?
+bup_python="$(dirname "$0")/../dev/bup-python" || exit $?
 exec "$bup_python" "$0"
 """
 # end of bup preamble
@@ -27,3 +27,4 @@ from bup import compat
 for arg in compat.argvb:
     os.write(stdout.fileno(), arg)
     os.write(stdout.fileno(), b'\0\n')
+    stdout.flush()