We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bfe3a2 + 8ae3bd2 commit faf45c9Copy full SHA for faf45c9
test/server-test-helpers.sh
@@ -13,7 +13,7 @@ run_server ()
13
mkdir -p log data # Directories that might be required by the server
14
dune build "$1"
15
# Run the server in the background, cut the datetime out of the log output.
16
- dune exec -- "$@" 2>&1 | cut -d ' ' -f 4- &
+ dune exec -- "$@" 2>&1 | cut -b 18- &
17
# Wait for the unix-domain socket and the command-pipe to be created
18
local timeout=50 # Don't wait more than 0.5s
19
while ! ( [[ -e ./local.sock ]] && [[ -e ./local.cmd ]] ) && (( timeout-- > 0 )); do
0 commit comments